What is different between two below statement in jQuery:
1) with .bind
$("#username").bind('click',function(){
//@todo
});
2) without .bind()
$("#username").click(function(){
//@todo
});
So, when I need to use one of them?
|
What is different between two below statement in jQuery: 1) with
2) without
So, when I need to use one of them? |
|||||||||||
|
|
There is no difference. If you read the docs for
You can confirm this by taking a quick look at the jQuery source:
I tend to use
To expand upon the comment by @Tomalak,
|
|||||||||||||||
|
|
In this form there is no difference. The |
|||
|
|
|
It is just a shortcut. There is really NO difference between them
|
|||
|
|
|
There is not difference,
|
||||
|
|