bdimitrovski / full_clip

Full Clip - fullscreen body background image jQuery plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Unexpected Reference error : Jquery is not defined , $ fullClip is not a function

lowzijian opened this issue · comments

I developed the same thing and put it in my current laravel project. Could i know what kind of script i need to import , other than fullclip and fullclip.min
image

Hey @lowzijian, you will need to include jQuery beforehand, as this script has a dependency on it. Something like

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="/js/fullclip.min.js"></script>
</head>

@bdimitrovski the problem was fixed. Thank You.