I have
window.onload = function()
{
$('form').submit(function()
{
return false;
});
};
Inside of the onload function, I later call Shadowbox.open(). Of course, I am passing options. Anyway, my form submits the entire page and fails to return false instead.
I have been looking for an actual working example of how to handle form submissions for a form that has been handed to Shadowbox. If you can point me to one, that would be amazing.
Thank you
What you have to do is:
Example-code(will run a google-search in a shadowbox)