Using fnGetNodes() with Jquery progressbar
Using fnGetNodes() with Jquery progressbar
koenvandamme
Posts: 2Questions: 0Answers: 0
Hi everyone
I have a datatable in which I use the following JQuery plugin to replace a percentage with a bar.
[code]
$(document).ready(function() {
$("#progressbar").progressbar({
value: 80 });
});
[/code]
This works fine but only on the first page of the table. I understand I need to use .live or fnGetNodes() to get this working on all pages but I don't know how. This is probably pretty basic stuff but I am new to JQuery. Thanks for your help.
--Koen
I have a datatable in which I use the following JQuery plugin to replace a percentage with a bar.
[code]
$(document).ready(function() {
$("#progressbar").progressbar({
value: 80 });
});
[/code]
This works fine but only on the first page of the table. I understand I need to use .live or fnGetNodes() to get this working on all pages but I don't know how. This is probably pretty basic stuff but I am new to JQuery. Thanks for your help.
--Koen
This discussion has been closed.
Replies