I want to insert some stuff generated by a PHP code into my HTML document, because I can't use innerHTML with .php extension, but I need that for some ajax. I tried jquery .load() and get(), but I can't get that to work, I'm not really a jquery guy:D
$.get("diaknev.php", function(data) {
$('#sajt').html(data);
});