I have a hidden input #start thats value is used to display a range of returned data (it is the starting point of an index) each time you click #next I need to increase its value.
$("#next").click(function() {
$("#start").val() + 80;
)};
is this correct? or is there a better way? thx all!