I am trying to update a site template that mainly uses jQuery 1.08 to use 1.11, since the widget that I want to connect to the subscription form uses 1.11.
Here is the template I am using:
http://multifour.com/projects/ray/ios/image-intro/index.html
Which is strange, if I use the following code, there is a header, but the form does not work properly:
<script src="scripts/jquery-1.11.0.min.js"></script>
And if I use this code, the form works, but the title disappears:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
I canβt use both, because whenever I enter the second line, the header disappears for some reason. What gives, can someone help me? Thank!
source
share