Guest User

Untitled

a guest
Apr 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $("img[title]").each(function(){
  2. this.after("<h2>" . this.attr(title) "</h2>");
  3. });
  4.  
  5. $(this).after("<h2>" + $(this).attr('title') + "</h2>");
  6.  
  7. .attr("which one", "what to put there")
  8.  
  9. $("img").after("<h2>" + $(this).attr("title", "your new title") + "</h2>");
  10.  
  11. $("img[title]").after("<h2>" + $(this).attr("title") + "</h2>");
  12.  
  13. $("img[title]").each(function() {
  14. $(this).after("<h2>" + $(this).attr("title") + "</h2>");
  15. });
Add Comment
Please, Sign In to add comment