Hey, how can I say the following
Foreach tag in my table, when someone clicks it I want to run a function
so something like:
ForEachTag.click
(
function (e)
{
}
)
|
Hey, how can I say the following Foreach tag in my table, when someone clicks it I want to run a function so something like:
|
||||
|
|
|
If you have a table like this:
The most basic selector is going to look like this:
This is simply binding something to all the links in the document. Want more control?
Which is essentially saying: "find me all the This is just the tip of the iceberg, though! You can get much more in-depth. What if you only want to bind the
Although jQuery does have an |
|||||||||
|
|
Well, it depends on how you want to do it. Basically, you have two options:
To add the same click-listener to multiple tags, do this:
To use event delegation, do something like this:
When possible it is better to use event delegation since it binds fewer listeners and thus consumes less memory and increases execution speed, especially on older browsers. You can read some about event delegation here: |
|||||||
|