[jQuery] Re: Best practices for dynamic form creation?

2007-08-01 Thread jayturley
Holy Pimentoes! I get it! You just opened up the next level for jQuery for me. Thanks!!! -jay On Aug 1, 2:07 pm, "Sean Catchpole" <[EMAIL PROTECTED]> wrote: > On 8/1/07, jayturley <[EMAIL PROTECTED]> wrote: > > > currentItem = ' > style="display:inline;">'; > > $('#content p').append(currentIt

[jQuery] Re: Best practices for dynamic form creation?

2007-08-01 Thread Sean Catchpole
On 8/1/07, jayturley <[EMAIL PROTECTED]> wrote: > currentItem = ' style="display:inline;">'; > $('#content p').append(currentItem); $('') .css("display","inline").append( $('') .attr("id",j.items[0].item_id) ).click(...).appendTo("#content p") That's just one of many ways of doing it. ~Sean