Crazy Firefox Behavior
Posted: Sun Nov 16, 2008 10:07 am
Could someone please confirm this? I am going nuts
. This only happen on Firefox 3.0.4. I tried opera and explorer and they are ok.
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?
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>