Greetings When loading a site on Joomla3 there is such a line (if you look at the source code, through a browser)
<script src="/media/jui/js/jquery.min.js" type="text/javascript"></script> which essentially connects jQuery v1.11.3, but the scripts that I write in the template do not work.
If I add to the template
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" type="text/javascript" ></script> That scripts work. I checked these 2 files from Google and from the media folder they are the same.
What could be the reason?
SOLVED There really is jQuery.noConflict ();
<script src="/media/jui/js/jquery-noconflict.js" type="text/javascript"></script> Replaced in the script
$(document).ready(function(){ on
jQuery(document).ready(function($) {