I'm trying to create my first fiddle. So here's what I want to do with jquery
$('.list').live('click', function(){
var dataPass = 'uid='+ uid;
$.ajax({
type: "POST",
url: "test.php",
data: dataPass,
cache: false,
success: function(html){
//Do something
}
});
});
So how/where do I write the codes for test.php
file? It's going to return some html markup.