1 2 3 4 5 6 7 8 9 10 11 12 13 14
$().ready(function() { $(".ajax").each(function(x){ $(this).click(function(){ $.ajax({url: $(this).attr("tgt"), success: function(result){ $("#ajax_result").html(result); }}); }) }) }) $("#reset").click(function(){ });