.bind('click')

.bind('click')

orangeorange Posts: 20Questions: 0Answers: 0
edited March 2010 in General
I can get .live('click', { . . . }) to work on the 'next' button but not the page number buttons.

For example, when I click 'next' the jQuery works, but when I click 'page 3'; the jQuery doesn't fire and I need to click again (somewhere on the page) to get it to fire. How do I get it to fire on the page numbers?

[code]
$("*").live('click', function() {
var i = $('thead th:contains(CRM Account)').next().index();
$('tbody tr td:nth-child(' + i + ')').each(function()
{
$(this).wrapInner(function() {
return '';

});
});
[/code]

thank you.
This discussion has been closed.