$(document).ready(function(){ $('.nbr_input').submit(function(e) { return false; }); $('.update').click(function(e) { var li = $(this).parent("li"); $.post('/xml/' + li.data("file"), {'action': 'update', 'nbr': li.data("nbr"), 'new_nbr': li.children(".nbr_input").val()}, function(d) { if(d === 'ok') { location.reload(); } }); }); });