Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>thanks for the clarification. to create a toggle button like this:</p> <p><a href="http://www.google.co.uk/imgres?num=10&amp;hl=en&amp;biw=1366&amp;bih=643&amp;tbm=isch&amp;tbnid=CfXL9cv8l0CfvM:&amp;imgrefurl=http://mitchjinfo.deviantart.com/art/iPhone-Toggle-Button-173878367&amp;docid=KCfqyS-NlBl4eM&amp;imgurl=http://fc03.deviantart.net/fs71/f/2010/215/2/0/iPhone_Toggle_Button_by_mitchjinfo.png&amp;w=400&amp;h=300&amp;ei=ffJqUMnTOcP80QXosYCwDA&amp;zoom=1&amp;iact=rc&amp;dur=1&amp;sig=117831312973390827386&amp;page=1&amp;tbnh=136&amp;tbnw=224&amp;start=0&amp;ndsp=23&amp;ved=1t:429,r:0,s:0,i:71&amp;tx=115&amp;ty=55" rel="nofollow">http://www.google.co.uk/imgres?num=10&amp;hl=en&amp;biw=1366&amp;bih=643&amp;tbm=isch&amp;tbnid=CfXL9cv8l0CfvM:&amp;imgrefurl=http://mitchjinfo.deviantart.com/art/iPhone-Toggle-Button-173878367&amp;docid=KCfqyS-NlBl4eM&amp;imgurl=http://fc03.deviantart.net/fs71/f/2010/215/2/0/iPhone_Toggle_Button_by_mitchjinfo.png&amp;w=400&amp;h=300&amp;ei=ffJqUMnTOcP80QXosYCwDA&amp;zoom=1&amp;iact=rc&amp;dur=1&amp;sig=117831312973390827386&amp;page=1&amp;tbnh=136&amp;tbnw=224&amp;start=0&amp;ndsp=23&amp;ved=1t:429,r:0,s:0,i:71&amp;tx=115&amp;ty=55</a></p> <p>you can use code that looks something like this:</p> <pre><code>&lt;div id="toggleImage"&gt; &lt;img id="toggleOn" class="toggle" src="on.jpg" /&gt; &lt;img id="toggleOff" class="toggle" src="off.jpg" /&gt; &lt;/div&gt; $(document).ready(function(){ $('.toggle').click(function(){ $(this).hide(); $(this).sibbling('img').show(); /* the code for whatever you are toggling goes here */ }); }); </code></pre> <p>the code for whatever you are toggling could include showing or hiding the Notification content or whatever it is you would like to be toggling on the page. For this on.jpg is the toggle "on" image, and off.jpg is the toggle "off" image just like the buttons for the iphone.</p>
    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