Return to Snippet

Revision: 40763
at February 7, 2011 22:25 by batamire


Initial Code
var anchor = $('<a />', {
  className: 'awesome',
  href: '#',
  text: "This is an anchor ",
  click: function(e){
    e.preventDefault();
    $(this).parent().slideToggle();
  }
});

$("li").each(function(){
  $(this).prepend(anchor.clone());
});

Initial URL
http://thenerdary.net/articles/entry/beautiful_element_creation_with_jquery#When:16:29:12Z

Initial Description


Initial Title
Element creation with jQuery

Initial Tags
DOM, jquery

Initial Language
jQuery