[jQuery] Form Helper Popups

2008-01-21 Thread Gautam Lad
Not sure what the correct name is but I am trying to achieve something like 
this:
   
  Anyone have a plugin already out there that I can easily attach to any form 
element?
   
  Here's a screenshot:
  http://www.gonrad.com/200801/helperbox.jpg

  Thanks,
  Gautam


[jQuery] Re: jQuery for Designers

2008-01-18 Thread Gautam Lad
Very cool.  I ended up checking out your blog site as well.
   
  A suggestion:
   
  Wherever you display code in your articles, it appears to be only a few lines 
of scrollable text (iframe?).

  I want to check out the rest of your site but its hard to look at code this 
way :(
   
  Looking forward to reading more :)
  
Remy Sharp <[EMAIL PROTECTED]> wrote:
  
Hi all,

I recently started a new project called jQuery for Designers (http://
jqueryfordesigners.com) aimed, obviously at designers, but also subtly
at jQuery beginners. It's a fortnightly tutorial aimed at different
areas of web niftyness that can be done using jQuery.

I guess the irony is the design of the blog (straight off the shelf)!
- but ignoring that for a moment :-) I'd love to hear your feedback,
suggestions or criticisms.

Many thanks,

Remy Sharp

blog ~ http://remysharp.com
work ~ http://leftlogic.com



[jQuery] Re: Submit a form via function call

2008-01-18 Thread Gautam Lad
My jquery.js does say this at this top so I take it its the latest
   
  (function(){
/*
 * jQuery 1.2.1 - New Wave Javascript


Mike Alsup <[EMAIL PROTECTED]> wrote:
  
> Trust me I've tried everything.

Are you using an older version of jQuery then?



[jQuery] Re: Submit a form via function call

2008-01-18 Thread Gautam Lad

Trust me I've tried everything.

${#myform").submit()

And

$("#myform")[0].submit();


I ended up  putting a hidden type=submit button on page and triggering a
click on it.

--

Gautam Lad


-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Mike Alsup
Sent: January 18, 2008 8:19 AM
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: Submit a form via function call


> function dosubmit() {
>   $("myform").submit();
> }

Your selector is wrong (forgot the #):

function dosubmit() {
 $("#myform").submit();
}