blob: d69dd2b6648ba610c2e259d072569753aba4a50d (
plain)
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(){
});
|