I want to have some code run when i change the selection of a dropdown. i see the livequery plugin states that this is needed to support as some browsers don’t do it out of the box
Do I really need livequery to capture onchange event of a dropdown that i create dynamically or does the regular live syntax work in all browsers?
livetakes advantage ofeventbubling mechanism so we can attach event handlers to elements which are created dynamically also, it will work as expected since it attaches event to the document element and listens to them. But I believechangeevent is not bubbled upto the dom tree so it may not work.