I'm trying to clean up the html code on my site, so I moved the jquery code to an external js file. Almost everything works as before only a .get function stopped working.
$("#sle").live("click", function() {
$.get("index.php", function(data){
alert("Data Loaded: " + data);
});
});
Any ideas?