Skip to content

Instantly share code, notes, and snippets.

@6pm
Created November 4, 2014 10:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 6pm/276b95d55ca6455a1b41 to your computer and use it in GitHub Desktop.
Save 6pm/276b95d55ca6455a1b41 to your computer and use it in GitHub Desktop.
Створення елементів на льоту і додавання атрибутів і обработчиків
$("<div/>", {
"class": "clickme",
text: "Нажми на меня!",
click: function(){
$(this).html('Спасибо.');
}
}).appendTo("body");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment