Dear All,
I have used javascript to open a help window in my asp.net website. it works fine with IE but for chrome it gives error like
'undefined is not a function'.below is my code in javascript file.
function FetchDate(Type) {
debugger;
var TT = Type
var x
var t;
var Emp;
var temp = new Array();
var arg = $(Type).attr('Flag');
if (window.event.keyCode == 113) {
x = window.showModalDialog('../USERHELP/Help_ME.aspx?hlp=' + arg + '', '', 'dialogWidth:700px;dialogHeight:600px;status:no;');
}
}
Go to the complete details ...