[Solved] jQuery not working on homepage [closed]


You’re trying to use jQuery before you’ve included it:

  <script>$(document).ready(function() {
    $("a.register").fancybox({
        'type': 'iframe'
    });
});
</script>
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>

Ensure that this is first:

<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>

1

solved jQuery not working on homepage [closed]