Thursday, 5 July 2012

Difference in onclick and onClick()

Event attributes in HTML are not case sensitive, so onclickonClick and ONCLICK all work. It is common practice to write attributes in lowercase: onclicknote that javascript itself is case sensitive, so if you write document.getElementById("...").onclick = ..., then it must be all lowercase.

No comments:

Post a Comment