1. Copy paste code into test.htm(or any name)
2. View your page(http://localhost/test.htm), MALE should be checked
3. Now edit the code and change check to female
4. reload page
100% of the time, the browser still shows MALE
I hope I am doing something stupid.Maybe is time to go to sleep for a while.
I see the update if I force the reload. Why is it in cache?
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
</head>
<body>
<form>
<input type="radio" value="M" name="Sex" checked="checked" />Male
<input type="radio" value="F" name="Sex" />Female
</form>
</body>
</html>