Posted on: 11/4/2014 6:49:17 AM | Views : 1822

hi all,
i m using getattribute in javascript and its not working in IE 11. Is there any equivalent for getattribute. below is my code.
code :- 
var innerFrames = currentRow.all.tags("iframe"); if(innerFrames.length > 0) { var currentFrame = innerFrames[0]; var frmID = currentFrame.getAttribute("id"); var ownerID = currentFrame.getAttribute("displayID"); } var sGroupCaption = (currentFrame.getAttribute("Caption") == null) ? "" : currentFrame.getAttribute("Caption"); if (currentFrame.getAttribute("isEmpty")!= null){ } var Type = (currentFrame.getAttribute("displayType") == null) ? "" : currentFrame.getAttribute("displayType");
pls suggest with what i can replcae this getattribute in javscript
Thanks

Go to the complete details ...