I have asp.net application which run well <= IE 10 (all) browser.
Suddenly I checked compliance with IE 11 and my javascript starts fail.
Que-1 It doesn't work for collection.
I used to access collection item using round bracket. like, document.form(0) or frm.radioOption(0) . It doesn't take , If I replace with square bracket then it works.
Que-2 document.all or form[0].all.HdnVariableName is return undefined objection.
Que-3 document.frmName is undefined. I gave form name in form tag. <form name='frmName'> . In IE 11 it doesn't work.
Above 3 issues spread in my complete application with plenty of occurrences.
Can you suggest any good solution to fix with generic solution for each issue ?