Hey Guys!
I've been searching around but couldn't find anything that worked so here goes,
I'm looking for a way to have a Javascript Alert show as a fancybox popup.
I have a contact form, and a javascript that checks the input before sending it.
I would like for those error messages to show up in a fancybox.
I'm not realy a Javascript star but I believe this post of the validator script produces
the alert window:
function Validator(frmname)
{
this.formobj=document.forms[frmname];
if(!this.formobj)
{
alert("Error: couldnot get Form object "+frmname);
return;
}
It's located in a external .js file which in included into the HTML where I embedded
fancybox. How would U go about getting this to open in fancybox?
Thanx alot in advance!
Best regards,
Bram Wolf