It is not first time I use $.get function, but this time I dont know why it is not working
function test(tid)
{
alert("1");
var ttt;
alert("2");
var ddd;
alert("3");
$.get("demo_ajax_load.txt", function(result){
alert("4");
});
}
demo_ajax_load.txt is just a text file content is: Welcome
I am getting alert 1,2,3 but it is not showing 4th alert message. everything looks normal here, what is wrong with this simple function?
Thanks
