I have this code:
var content = $(".highlight").click(function() {
$(this).html();
}).get();
$.ajax({
type : "POST",
url : "tosqltwo.php",
data : {
content : content
}
});
This seems to be freezing my server though, any ideas on if I’m doing something wrong?
Use this