Mondeo Posted August 16, 2007 Posted August 16, 2007 Hi, I'm trying to access the onClick of an image to run some javascript when the image is clicked. document.getElementByID('imgMain').onClick = 'window.close' But it throws an error. Microsoft JScript runtime error: Object doesn't support this property or method Can this be done, if so whats the correct syntax? Many Thanks Quote
MrPaul Posted August 16, 2007 Posted August 16, 2007 onclick Two things. Firstly, case is important - onclick must be lowercase. Secondly, the desired action needs to be a function call: document.getElementById('imgMain').onclick = function() {window.close();} Good luck :) Quote Never trouble another for what you can do for yourself.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.