[jQuery] SimpleModal box in the window that contains an iframe

2009-10-07 Thread Yeuker
the modal dialog box in page A, but have the code and modal div html in page b. Is this possible. This is a tough problem to describe, but hopefully i have done a decent job. Any questions, please ask and I will get back to you asap. Thanks so much for your help, Yeuker

[jQuery] Re: SimpleModal box in the window that contains an iframe

2009-10-07 Thread Yeuker
this: var t = top.window; var $d = t.$(document.body); $d.find(#myElement).modal(); On Oct 7, 2:36 pm, Yeuker yeu...@gmail.com wrote: Hi Everyone, I am using Eric Martains Simple Modal dialog box.  Here is my problem.  I have a page, (which we will call page A) that contains an iframe

[jQuery] Re: Catching document.forms['formid'].submit() with jquery validator

2009-03-31 Thread Yeuker
and replace them with something that goes through the jQuery event chain, including validation. Something like this: $(a[onclick]).each(function() {   this.onclick = function() {};   $(#form).submit(); }); Jörn On Mon, Mar 30, 2009 at 3:57 PM, Yeuker yeu...@gmail.com wrote: For those

[jQuery] Catching document.forms['formid'].submit() with jquery validator

2009-03-30 Thread Yeuker
=text/javascript $(document).ready(function(){ $(#aform).submit( function(){ alert(Submitted); }); }); /script Thanks so much, Yeuker