Re: [jQuery] Re: simple jquery form plugin question

2009-11-26 Thread David
Thank you very much Kelly! You solved my problem. On Thu, Nov 26, 2009 at 12:59 AM, Kelly wrote: > Hi David, > I was able to recreate the same problem and fixed it. Try this: > > > jQuery Form Plugin > > form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0; > padding: 20px }

[jQuery] Re: simple jquery form plugin question

2009-11-26 Thread Kelly
Hi David, I was able to recreate the same problem and fixed it. Try this: jQuery Form Plugin form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0; padding: 20px } // wait for the DOM to be loaded $(document).ready(function() { // bind 'myForm' an

Re: [jQuery] simple jquery form plugin question

2009-11-25 Thread brian
Are you sure that your javascript is being loaded properly? You can check that easily with Firebug or the FF WebDeveloper extension. On Wed, Nov 25, 2009 at 7:07 PM, David wrote: > Hi, > > Just started using jquery and it looks really good! > I have question regarding the jQuery form plugin. > >

[jQuery] simple jquery form plugin question

2009-11-25 Thread David
Hi, Just started using jquery and it looks really good! I have question regarding the jQuery form plugin. I tried to get the simplest example I could up and running but I ran into a wall. In the example when I press submit, I expect an alert box to appear but I only get directed to the url that i

[jQuery] Form Plugin Question

2009-07-01 Thread icfantv
As jQuery has both a serialize() and serializeArray() method for serializing an HTML form to a String and JSON respectively, why does the Form Plugin at malsup.com include yet another serialize() method in the form of formSerialize()? I understand the fieldSerialize() method, but not the former.

[jQuery] Form Plugin Question

2009-06-29 Thread icfantv
As jQuery has both a serialize() and serializeArray() method for serializing an HTML form to a String and JSON respectively, why does the Form Plugin at malsup.com include yet another serialize() method in the form of formSerialize()? I understand the fieldSerialize() method, but not the former.