vote up 1 vote down star
1

I have a problem.

I use this code:

$( '#wall_msg').clone( true ).insertAfter( '#wall_msg' );

What can I do to set the ID for the clone and I need to fade the new item in with $.getJSON in jQuery.

I hope for help. :)

flag

1 Answer

vote up 4 vote down check
$("#wall_msg").clone(true)
  .attr("id", "newid")
  .hide()
  .insertAfter("#wall_msg")
  .fadeIn();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.