There are many <label name="delQ" style="cursor:pointer">Remove</label>
elements in a web page; the elements are dynamically created. How to determine how many "delQ" exist in the current web page?
$('[name="delQ"]').live('click', function() {
//Get the number of name="delQ" in the current web page.
});
How to do it in Jquery?