Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>try using <code>mouseenter()</code> and <code>mouseleave()</code></p> <p>live demo <a href="http://jsfiddle.net/c3SFr/1/" rel="nofollow"><strong>here</strong></a></p> <p><strong>HTML</strong></p> <pre><code>&lt;div id="button_1" class="button_id"&gt; &lt;div id="button_nav"&gt; &lt;div id="button_img" class="button_img"&gt;&lt;/div&gt; &lt;div id="button_name" class="button_name"&gt;Employment &amp; skills&lt;/div&gt; &lt;div id="clear"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt;&lt;br/&gt; &lt;div id="button_2" class="button_id"&gt; &lt;div id="button_nav"&gt; &lt;div id="button_img" class="button_img"&gt;&lt;/div&gt; &lt;div id="button_name" class="button_name"&gt;Contact Us&lt;/div&gt; &lt;div id="clear"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt;&lt;br/&gt; &lt;div id="button_3" class="button_id"&gt; &lt;div id="button_nav"&gt; &lt;div id="button_img" class="button_img"&gt;&lt;/div&gt; &lt;div id="button_name" class="button_name"&gt;Corporate Queries&lt;/div&gt; &lt;div id="clear"&gt;&lt;/div&gt; &lt;/div&gt; &lt;/div&gt; </code></pre> <p><strong>CSS</strong></p> <pre><code>.button_id { margin: 5px; display: block; border:1px dotted red; } #button_nav { display: inline; } #button_img { background-image: url('images/left_nav_button.gif'); width: 11px; height: 11px; float: left; } </code></pre> <p><strong>jQuery</strong></p> <pre><code> $(".button_id").mouseenter(function() { $("#button_img", this).css('background-image', 'url(images/left_nav_button_hover.gif)'); $(this).css('color', '#0365b9'); }).mouseleave(function() { $(".button_img", this).css('background-image', 'url(images/left_nav_button.gif)'); $(this).css('color', '#8C8C8C'); }); </code></pre>
    singulars
    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.
    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