• Resolved Mysmasken

    (@mysmasken)


    They work fine in IE but not in Firefox… sigh.
    Go to http://www.mysmasken.se/reviews/2006/12/10/creativexpress/
    In the middle section, before the comments, there is a link that says “recensera den här butiken”.
    If you click there the form will come out.

    I can add a comment in IE but when I click the radio buttons in Firefox I can only chose the option 5…

    Any idea what’s wrong? lol

Viewing 2 replies - 1 through 2 (of 2 total)
  • You’ve stuck all the radio input tags for each ratings type (or rather, name) inside a single <label> element. Not good. Instead of:

    <label>
    <input name="use" type="radio" value="5"></input>5
    <input name="use" type="radio" value="4"></input>4
    <input name="use" type="radio" value="3"></input>3
    <input name="use" type="radio" value="2"></input>2
    <input name="use" type="radio" value="1"></input>1
    </label>

    It should be:

    <label><input name="use" type="radio" value="5"></input>5</label>
    <label><input name="use" type="radio" value="4"></input>4</label>
    <label><input name="use" type="radio" value="3"></input>3</label>
    <label><input name="use" type="radio" value="2"></input>2</label>
    <label><input name="use" type="radio" value="1"></input>1</label>

    Thread Starter Mysmasken

    (@mysmasken)

    Yay! Thanks 🙂

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Radio buttons doesn’t work in Firefox….’ is closed to new replies.