вы разрушаете концепцию noConflict
, переназначая jquery для $
var ..
используйте jQuery.noConflict();
без присвоения переменной, и после этого используйте jQuery
вместо $
так изменить
<script type="text/javascript">
//no conflict jquery
var $ = jQuery.noConflict();
//jquery stuff
</script>
до
<script type="text/javascript">
//no conflict jquery
jQuery.noConflict();
//jquery stuff
</script>
и
$(document).ready(function() {
// enable tooltip for "download" element. use the "slide" effect
$("#laurence").tooltip({
effect: 'slide',
offset: [60, 40] });
});
до
jQuery(document).ready(function() {
// enable tooltip for "download" element. use the "slide" effect
jQuery("#laurence").tooltip({
effect: 'slide',
offset: [60, 40] });
});