mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
6 lines
123 B
JavaScript
6 lines
123 B
JavaScript
(function($) {
|
|
$(".foo").click(function(event) {
|
|
event.preventDefault();
|
|
$(this).attr("bar", "baz");
|
|
});
|
|
})(jQuery);
|