Created
November 4, 2014 10:15
-
-
Save 6pm/276b95d55ca6455a1b41 to your computer and use it in GitHub Desktop.
Створення елементів на льоту і додавання атрибутів і обработчиків
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("<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