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