0
I own a index.php
which uses the following JQuery
and CSS
:
<script src="http://code.jquery.com/jquery-1.12.1.min.js"></script>
<script src="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
, 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>
<script src="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 the page example.php
.
How can I fix this ?
Post the HTML code of the elements and which css is applied to them.
– Marllon Nasser