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 = ' <form action="ajax_test.asp?mode=delete"
> > style="display:inline;"><input type="image" src="images/icons/
> > cancel.gif" id="' + j.items[0].item_id + '" /></form>';
> > $('#content p').append(currentItem);
>
> $('<form action="ajax_test.asp?mode=delete">')
> .css("display","inline").append(
>   $('<input type="image" src="images/icons/cancel.gif">')
>   .attr("id",j.items[0].item_id)
> ).click(...).appendTo("#content p")
>
> That's just one of many ways of doing it.
>
> ~Sean

Reply via email to