diff options
Diffstat (limited to 'website/hover.js')
| -rwxr-xr-x | website/hover.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/website/hover.js b/website/hover.js new file mode 100755 index 0000000..bb71fad --- /dev/null +++ b/website/hover.js @@ -0,0 +1,10 @@ +$(document).ready(function() {
+ $(".link_box").hover(
+ function () {
+ $(this).addClass("hover");
+ },
+ function () {
+ $(this).removeClass("hover");
+ }
+ );
+});
\ No newline at end of file |
