Javascript
-
Hi All, I have one problem to discuss with. I have a javascript function which will capture screencoordinates of browser window on a mouse click. I want that javascript function to be masked(i.e doesn't apply)to a particular event(eg.Say,"OnmouseClick" on a image in the browser). How can we do this?
-
Hi All, I have one problem to discuss with. I have a javascript function which will capture screencoordinates of browser window on a mouse click. I want that javascript function to be masked(i.e doesn't apply)to a particular event(eg.Say,"OnmouseClick" on a image in the browser). How can we do this?
-
i'm not very sure about that but gues u should check the "element" type before doing your javascript code var elem; elem = document.gerElementById('Your Control') if elem.type = "img" ... something like that hope this would help
Best Regards 3ala2 :)
What u check the condition is ok.if the condition satisfies then we should able to mask particular javascript function(In this case,the function which captures the screen coordinates should be masked for the clicked event on the image in a browser). So how to mask the javascript function is what really important for that clicked event on image.