Или по-другому:
<script type="text/javascript">
$(document).ready(function(){
$(function() {
$("div.tile2").click(function(){
var id = $(this).attr("id");
var content = $(this).text();
$.ajax ({
url: "http://inwatch.com.ua/js/js3.php",
type: "GET",
data: {"id": id},
cache: true,
success: function(response)
{
var myArray = response.split('abra_kadabra')
$("div.tile2").replaceWith(myArray[1])
}
});
});
});
});
</script>
Как в 16 строке "$("div.tile2").replaceWith(myArray[1])" заменить не все <div class=tile2, а тот, который = id в 5 строке.