Thanks for you response Kravimir,
it is an integer
Main Topics
Browse All TopicsI am trying to dynamically add onclick events with parameters to img tags on my page. I found the question related to this one and came up with the following line of code:
someIMG.onclick = new Function("RemoveRoom(this.
Where rn is an attribute I have set on the img element on my page and RemoveRoom is a function in my javascript that removes certain elements from my page.
This works fine in IE but in firefox I get an error "RemoveRoom(undefined)". So firefox isn't grabbing the attribute.
Thanks for your help!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I was just thinking about this and does it really matter what type it is? The idea is that when the user clicks on the img the value for the attribute rn is grabbed. That way I can change the value for rn at any time without having to change the function that is called for the onclick event.
- Hope this made sense, it's a bit tricky to explain
Business Accounts
Answer for Membership
by: KravimirPosted on 2008-05-11 at 20:51:26ID: 21544557
If "rn" is a string, you can do this:
is.rn+"')" );
someIMG.onclick = new Function("RemoveRoom('"+th
If it's not, tell us what it is so we can suggest something else.