Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p><strong>You can do that in various ways</strong> </p> <p><strong>It depends of what you want, choosing the right code will help you website functionality.</strong></p> <p>1.You can have only the "button"(radio) with the link:(there are two ways)</p> <p><em>1.1-If the page is on you host:</em> </p> <blockquote> <p>&lt; input type="radio" name="radio-set"id="st-control2" onclick="location.href='../update/update.html'"> Updates &lt; /input></p> </blockquote> <p><em>1.2-If the page is on another host:</em></p> <pre><code>&lt;input type="radio" name="radio-set" id="st-control-2" onclick="parent.location='../update/update.html'"&gt;Updates&lt;/input&gt; </code></pre> <p>2.You can have only the label with the link:</p> <blockquote> <pre><code>&lt;input type="radio" name="radio-set" id="st-control-2"/&gt; &lt;a href="../update/update.html"&gt;&lt;b&gt;Updates&lt;/b&gt;&lt;/a&gt; </code></pre> </blockquote> <p>3.And ou can have both link and "button"(radio) with the link:</p> <blockquote> <pre><code>&lt;input type="radio" name="radio-set" id="st-control-2" onclick="location.href='../update/update.html'"/&gt; &lt;a href="../update/update.html"&gt;&lt;b&gt;Updates&lt;/b&gt;&lt;/a&gt; </code></pre> </blockquote> <p>4.You can also use a button(Pesonaly i advise it.)</p> <blockquote> <pre><code>&lt;button type="button" id="st-control-2" onclick="location.href='../update/update.html'"&gt;&lt;b&gt;Update&lt;/b&gt;&lt;/button&gt; </code></pre> </blockquote> <p><strong>Here's some tags info you can add to:</strong></p> <p><a href="http://www.w3schools.com/tags/tag_a.asp" rel="nofollow">HTML &lt; a > Tag</a></p> <p><a href="http://www.w3schools.com/tags/tag_input.asp" rel="nofollow">HTML &lt; input > Tag</a></p> <p><a href="http://www.w3schools.com/tags/tag_label.asp" rel="nofollow">HTML &lt; label > Tag</a></p>
 

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