Hi friend
here IE return object
but netscape and firefox return false
why
my code support all browser
pls solve this problem
Code:
var xPos = document.forms[0].MouseX.value;
var yPos = document.forms[0].MouseY.value;
showPopup(event,xPos+200 ,yPos );
function showPopup (eventObj,x,y) {
alert(eventObj);
}
but netscape and firefox return false
why
my code support all browser
pls solve this problem
Comment