I have a form and when i click submit i want to display a box saying thank you and some information. Now I just want the box to show OK. So i really dont need a confirmation box but something similar with just an OK button. Can i modify my existing code to achieve it?
<script type="text/javascript">
$(function() {
$('form.new').submit(function(){
if (!confirm('Thank you')) {
return false;
}
}
});
});
</script>