9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
|
(function ($) {
|
||
|
$(document).ready(function () {
|
||
|
$(".hide").hide();
|
||
|
$(".toggle").click(function () {
|
||
|
$(document.getElementById($(this).data("show"))).toggle();
|
||
|
});
|
||
|
});
|
||
|
})(jQuery);
|