AJAX could do this. Or javascript "DIV".
Here is an example of a Javascript DIV solution:
Put this code within the <head></head> tags.
Code:
//in the head section
<script type="text/javascript">
function showit(){
document.getElementById('success').style.visibility = 'visible';
}
</script>
Put this code where you want the success message to appear (and change success message as appropriate.
Code:
<div id="success" style="visibility: visible">SUCCESS MESSAGE HERE</div>
Then place this code within the "submit" tag:
Code:
onsubmit="showit"
//OR
onclick="showit"
Hope this helps,
Josh.
Bookmarks