scrumelo/js/scrumelo.js

9 lines
223 B
JavaScript
Raw Normal View History

(function ($) {
$(document).ready(function () {
$(".hide").hide();
$(".toggle").click(function () {
$(document.getElementById($(this).data("show"))).toggle();
});
});
})(jQuery);