How can a checked radio button, not highlight it's checked?

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Post Reply
simonmlewis
DevNet Master
Posts: 4435
Joined: Wed Oct 08, 2008 3:39 pm
Location: United Kingdom
Contact:

How can a checked radio button, not highlight it's checked?

Post by simonmlewis »

Code: Select all

  <input type='radio' name='powertype' value='electric' checked='checked'> Electric electric<br/>
On screen, this isn't show the dot in the radio button.
And yet, when I submit it, it does update the database and keeps it "checked='checked'.

So why isn't it showing the 'dot' in the radio button?

Other radio buttons on the same page, written in the same manner, do work.
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
simonmlewis
DevNet Master
Posts: 4435
Joined: Wed Oct 08, 2008 3:39 pm
Location: United Kingdom
Contact:

Re: How can a checked radio button, not highlight it's check

Post by simonmlewis »

Looks like it simply doesn't like the name "powertype".
Love PHP. Love CSS. Love learning new tricks too.
All the best from the United Kingdom.
Post Reply