HighDots Forums  

Re: input checkbox onclick not working via DOM on IE7, FF, WebKit

Javascript JavaScript language (comp.lang.javascript)


Discuss Re: input checkbox onclick not working via DOM on IE7, FF, WebKit in the Javascript forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Richard Cornford
 
Posts: n/a

Default Re: input checkbox onclick not working via DOM on IE7, FF, WebKit - 10-31-2008 , 11:23 AM






On Oct 31, 2:35 pm, Aaron Gray wrote:
Quote:
The following input checkbox onclick via DOM is not
working on IE7, FF, or WebKit, but is working on Opera
for some strange reason.
snip
function init()
{
test = document.createElement( "INPUT")
test.type = "checkbox"
test.checked = true
test.onClick = "alert( 'test = ' + this.checked)"
snip
Hope I have not missed something too silly.
In case sensitive javascript the property name to which you should be
assigning is 'onclick' (all lower case), and the value you should be
assigning is a reference to a function object not a string primitive.

Richard.


Reply With Quote
  #2  
Old   
SAM
 
Posts: n/a

Default Re: input checkbox onclick not working via DOM on IE7, FF, WebKit - 10-31-2008 , 11:43 AM






Le 10/31/08 4:32 PM, Aaron Gray a écrit :
Quote:
"Richard Cornford" <Richard.Cornford (AT) googlemail (DOT) com> wrote in message
news:b29caec3-a504-4663-b98f-0d17e5c8d0d6 (AT) s9g2000prm (DOT) googlegroups.com...
On Oct 31, 2:35 pm, Aaron Gray wrote:
The following input checkbox onclick via DOM is not
working on IE7, FF, or WebKit, but is working on Opera
for some strange reason.
snip
function init()
{
test = document.createElement( "INPUT")
test.type = "checkbox"
test.checked = true
test.onClick = "alert( 'test = ' + this.checked)"
test.onclick = function() { alert('test = ' + this.checked); };
}

Quote:
Have not done some JavaScript for a couple of weeks, amazing how quickly my
brain chucks things out.
--
sm



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.