Files
fsfe-website/scripts/master.js
ato dc52198b6e Adding raw functionality for dismissing notice
svn path=/branches/design/; revision=18304
2010-11-13 00:52:21 +00:00

15 lines
245 B
JavaScript

/*
/scripts/master.js -- Misc. script snippets needed for fsfe.org
*/
$(document).ready(function() {
// Close service notice when clicking dismiss button.
$("#service-notice .close a").click(function() {
alert("yes!");
});
});