Hello i want to replace the text in div when user click on it i have tried this code but there is something wrong with my code
<script>
$(document).ready(function(){
//alert('hi');
$('div').append('hi')
$('div').click(function(){
$('this').append('how r u');
})
})
</script>
please help
Thanks