.bind('click')
.bind('click')
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.
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.