I've tried out numerous ways to target the parent element and/or the JS object itself when initiating a super simple Ajax call. I have 3 divs with the same class, nothing more. When I click one, I try to get a .html(responseHere) to that DIV to simply change the content in it, but I can't find a way to select it without giving it an ID etc.
Javascript:
$(document).ready(function(){
$('.box').click(function(){
$.get('ajax.php', function(data){
$(this).html(data);
}, 'json');
});
});
PHP:
<?php
$var = 'This is some new content!';
echo json_encode($var);
?>
HTML:
<div class="box">
Click me to change my content
</div>
EDIT: When I alert() out the value of $(this) I only get [object Object]