what is the most common mistake that you make while writing code in jquery ?
Posted
by Mahesh Velaga
on Stack Overflow
See other posts from Stack Overflow
or by Mahesh Velaga
Published on 2010-04-22T19:51:16Z
Indexed on
2010/04/22
19:53 UTC
Read the original article
Hit count: 164
jQuery
|common-mistakes
Mine is that, I almost always forget to put a #
before the id
name of the element
Example:
$("ElementId")
instead of $("#ElementId")
Whats yours?
© Stack Overflow or respective owner