0
votes
How to prevent a user from seeing previous users’ info by hitting the “Back” button
I think this is as much a user interface challenge as a coding problem. On top of whatever anti-caching techniques you employ, you need to make it clear to the user that they must hit a big, obviou …
0
votes
Dead Center for JavaScript Output
How about using text-align: center?:
#content
{
font-family: Helvetica, Geneva, Arial, sans-serif;
font-color: black;
background-color: white;
text-align: center;
}
…
2
votes
How to display browser specific HTML?
This is the Microsoft-approved way:
<!--[if IE]>
<a href="ie-only.html">click here!</a>
<![endif]-->
<![if !IE]>
<a href="all-other-browsers …
