Is jQuery .live() more memory intensive than a simple .click() .hover() or .keyup()?
I imagine it would be but to what degree?
|
Is jQuery .live() more memory intensive than a simple .click() .hover() or .keyup()? I imagine it would be but to what degree? |
|||
|
|
|
It depends on what you're trying to accomplish. Just about every case I came across where I used |
|||
|
|
|
I'd guess that it is less memory intensive, but more processor intensive because it only assigns one handler function per event/selector, but it needs to In fact, though I haven't dug deep into how it works, I'd imagine that it would need to That said, when you do The It behaves the same as EDIT: Improved phrasing of what the selector engine is doing, with credit to @Šime Vidas. |
|||||||||||
|