I am really new to jQuery so sorry if this is a stupid question but can someone tell me why my jQuery statements aren't working?
I have a script called scripts.min.js on the above wordpress site and a large number of the functions don't seem to work, it uses the modernizr scripts is this what is causing the issue?
EG:
<div id="horizontal-scroll" class="">
<script type='text/javascript'>
jQuery(function (e) {
e("a.expandStories")
.click(function () {
e("#horizontal-scroll")
.fadeIn(950);
return !1
})
});
jQuery(function (e) {
e("#horizontal-scroll")
.jScrollPane({
autoReinitialise: !0,
verticalDragMinHeight: 60,
verticalDragMaxHeight: 60,
scrollbarWidth: 6
});
});
</script>
Can someone please tell me why these functions aren't working? What am I doing wrong?
Cheers! :)