I have the following section of code:
How would I make it so the inc_thanks page shows in a div rather than the next page?
I’ve been searching on Google for a similar examples but unable to find anything.
Thanks.
Code:
if (intErrors == 0)
{
document.forms[0].action='inc_thanks.asp';
document.forms[0].submit();
} else {
...
How would I make it so the inc_thanks page shows in a div rather than the next page?
I’ve been searching on Google for a similar examples but unable to find anything.
Thanks.