I have an HTML that uses Jquery. Let's say in the I call to them.
<head>
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.jshowoff.min_130315_page.js"></script>
</head>
<body>
<script> </script> <!-- jquery.jshowoff plugin will be used below! -->
<div> </div>
<div> </div>
<!-- And an ads extension adds a link to jquery again. -->
<script type="text/javascript" src="jquery.min.js"></script>
<!-- scripts below will jquery.min.js -->
</body>
My question is. What will be the effect of this?
- Will calling jquery again disable the plugin (jquery.jshowoff)?
- Will the browser only be able to read jquery.min and not the plugin?
I hope this is clear enough if so, I can be extra clear. Thank you.