Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to avoid multiple jqueries clashes
    primarykey
    data
    text
    <p>I have a page that uses both Jquery's Fisheye and Bootstrap. Now the Fisheye isn't working whenever Bootstrap is used.I tried using :noConflict();</p> <p>But it doesn't seem to help.Or maybe Im placing it wrongly? Below is my full page code.Kindly advise.Thanks in advance.</p> <pre><code> &lt;!DOCTYPE html&gt; &lt;!-- To change this license header, choose License Headers in Project Properties. To change this template file, choose Tools | Templates and open the template in the editor. --&gt; &lt;html&gt; &lt;head&gt; &lt;meta charset="UTF-8"&gt; &lt;title&gt;&lt;/title&gt; &lt;link rel="stylesheet" href="css/style.css" type="text/css"&gt; &lt;link rel="stylesheet" href="side_style.css" type="text/css"&gt; &lt;script src="menuv2.js" type="text/javascript"&gt;&lt;/script&gt; &lt;meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"&gt; &lt;link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap.css" rel="stylesheet" /&gt; &lt;link href="http://getbootstrap.com/2.3.2/assets/js/google-code-prettify/prettify.css" rel="stylesheet" /&gt; &lt;link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet" /&gt; &lt;link href="css/bootstrap-modal.css" rel="stylesheet" /&gt; &lt;script type="text/javascript" src="js/jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="js/interface.js"&gt;&lt;/script&gt; &lt;style&gt; .left { height: 100%; //opacity: 0.5; background: rgba(0, 0, 0, 0.3); border-top: 3px solid #ccc; border-bottom: 3px solid #ccc; border-right: 3px solid #ccc; position: relative; float: left; width: 16%; color: #fff; } .right { height: 100%; background: rgba(0, 0, 0, 0.3); border-top: 3px solid #ccc; border-bottom: 3px solid #ccc; border-left: 3px solid #ccc; position: relative; float: right; width: 16%; } .middle { height: 100%; background: rgba(0, 0, 0, 0.3); border-top: 3px solid #ccc; border-bottom: 3px solid #ccc; border-right: 3px solid #ccc; border-left: 3px solid #ccc; position: relative; float: left; margin-left: 3em; //margin-right: 1em; // left:20%; width: 60%; } .ontop { position: relative; top: 2.7em; right: 1.6em; } .onmiddle { position: relative; top: 12.7em; right: 1.6em; } &lt;/style&gt; &lt;/head&gt; &lt;body style="background-image: url(bg/6.jpg);background-repeat: no-repeat;-webkit-background-size: cover;-moz-background-size: cover; -o-background-size: cover;background-size: cover;" width="100%" height="100%"&gt; &lt;div class="left"&gt; &lt;aside&gt; &lt;img src="hooha_images/logo_small.png" class="expand"&gt; &lt;/aside&gt; &lt;aside style="padding-top: 20%;" class="ontop"&gt; &lt;?php include ( 'sidebar.php'); ?&gt; &lt;/aside&gt; &lt;aside&gt; &lt;aside&gt; &lt;?php include( 'bottom_left.php');?&gt; &lt;/aside&gt; &lt;/div&gt; &lt;div class="middle"&gt; &lt;h1&gt;This is the Superstar page &lt;/h1&gt; &lt;/div&gt; &lt;div class="right"&gt; &lt;div class="responsive"&gt; &lt;aside style="position: relative;float: right;"&gt; &lt;a data-toggle="modal" href="#responsive"&gt;Register&lt;/a&gt; | &lt;a data-toggle="modal" href="#responsive"&gt;Login&lt;/a&gt; &lt;aside&gt; &lt;div id="responsive" class="modal hide fade" tabindex="-1" data-width="760"&gt; &lt;div class="modal-header"&gt; &lt;button type="button" class="close" data-dismiss="modal" aria-hidden="true"&gt;&amp;times;&lt;/button&gt; &lt;h3&gt;Register&lt;/h3&gt; &lt;/div&gt; &lt;div class="modal-body"&gt; &lt;div class="row-fluid"&gt; &lt;div class="span6"&gt; &lt;h4&gt;Kindly fill up your details&lt;/h4&gt; &lt;p&gt;Name: &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;p&gt;Email &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;p&gt;Password &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;/div&gt; &lt;div class="span6"&gt; &lt;h4&gt;More Info&lt;/h4&gt; &lt;p&gt;Detail 1 &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;p&gt;Detail 2 &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;p&gt;Detail 3 &lt;input type="text" class="span12" /&gt; &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class="modal-footer"&gt; &lt;button type="button" data-dismiss="modal" class="btn"&gt;Cancel&lt;/button&gt; &lt;button type="button" class="btn btn-primary"&gt;Submit&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript"&gt; $.noConflict(); $(document).ready( function () { $('#dock2').Fisheye({ maxWidth: 60, items: 'a', itemsText: 'span', container: '.dock-container2', itemWidth: 40, proximity: 80, alignment: 'left', valign: 'bottom', halign: 'center' }); //added semicolon } ); &lt;/script&gt; &lt;/script&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://getbootstrap.com/2.3.2/assets/js/google-code-prettify/prettify.js"&gt;&lt;/script&gt; &lt;script src="http://getbootstrap.com/2.3.2/assets/js/bootstrap.js"&gt;&lt;/script&gt; &lt;script src="js/bootstrap-modalmanager.js"&gt;&lt;/script&gt; &lt;script src="js/bootstrap-modal.js"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; $(function () { $.fn.modalmanager.defaults.resize = true; $('[data-source]').each(function () { var $this = $(this), $source = $($this.data('source')); var text = []; $source.each(function () { var $s = $(this); if ($s.attr('type') === 'text/javascript') { text.push($s.html().replace(/(\n)*/, '')); } else { text.push($s.clone().wrap('&lt;div&gt;').parent().html()); } }); $this.text(text.join('\n\n').replace(/\t/g, ' ')); }); prettyPrint(); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload