I'd like to add the Latest jQuery from WordPress. But there has no javascript string ($) in my index.php file which I could change and write "jQuery" instead of "$". This is all jquery plugins which I have used in index.php file
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/jquery.prettyPhoto.js"></script>
<script src="<?php bloginfo('template_url');?>/js/jquery.sticky.js"></script>
<script src="<?php bloginfo('template_url');?>/js/jquery.isotope.min.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/sorting.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/jquery.jcarousel.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/js.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/jquery.stellar.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url');?>/js/waypoints.min.js"></script>
<!--[if lt IE 9]>
<script src="<?php bloginfo('template_url');?>/js/html5shiv.js"></script>
<script src="<?php bloginfo('template_url');?>/js/respond.src.js"></script>
<![endif]-->
I wrote this function in functions.php
file for calling Latest jQuery from WordPress-
/* Adding Latest jQuery from WordPress *************************/
function polish_arest_jquery() {
wp_enqueue_script('jquery');
}
add_action('init', 'polish_arest_jquery');
I am sorry to say that jQuery noConflict Wrappers is not available in my index.php file.
In that case, how I could add Latest jQuery from WordPress? Thank you.