views:

22

answers:

1

What are some good tutorials on how to add form fields with jquery?

+1  A: 

Charlie Griefer probably has the best documented tutorial on this I've come across

Adding a form element can be as simple as:

$("form").append("<input type='text' id='bob' />");

It all depends how complex your forms are and what you're ultimately after, but Charlie's tutorial is a good place to start.

Nick Craver