Advertisement
Guest User

Untitled

a guest
Sep 1st, 2014
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document).ready(function(){
  2. $(".moviepanel").click( function(){
  3. $("<p> Test </p>").insertBefore($("this .movieend"));
  4. });
  5. });
  6.  
  7. $("<p> Test </p>").insertBefore( $("this .movieend") );
  8.  
  9. $("<p> Test </p>").insertBefore( $(this).find(".movieend") );
  10.  
  11. $(this).find(".movieend").before("<p> Test </p>");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement