I have a index.php
that uses the following JQuery
and CSS
:
<script src="http://code.jquery.com/jquery-1.12.1.min.js"></script><scriptsrc="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
And from this index
, I call a second page example.php
through a normal link without passing forms or anything and using another JQuery
and CSS
:
<script src="http://code.jquery.com/jquery-1.12.1.min.js"></script><scriptsrc="http://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<link href="http://code.jquery.com/ui/1.11.4/themes/dark-hive/jquery-ui.css" rel="stylesheet">
My question is:
The JQuery
and CSS
of index
is affecting and overwriting that of example.php
page.
How can I fix this?