Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. $('#mediaWall a').bind('click', function(e){
  2.  
  3. e.preventDefault();
  4.  
  5.  
  6. objLinkProperties = new Object ();
  7. objLinkProperties.title = $(this).attr('title');
  8. objLinkProperties.href = $(this).attr('href');
  9. objLinkProperties.name = $(this).attr('name');
  10.  
  11.  
  12. $('<strong>This is the title: </strong>' + objLinkProperties.title).appendTo('#mediaWall');
  13.  
  14.  
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement