, OP , , , .
: Facebook.
( , ) , , .
"spoofing" , div s, . , . .
, div, IE8 windows 7:
http://users.on.net/mbywaters/fb.jpg
HTML .
, , CSS. . IE, div, , IE:
http://users.on.net/mbywaters/fb2.jpg
, , , .
, - JavaScript-, select, . Facebook JavaScript, , .
EDIT:
, .
, IE8, IE7 , , :
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
IE8 , . Facebook .
IE7 - , . , , IE7, IE8, Chrome Firefox 3.6.15 (, ).
:
http://users.on.net/mbywaters/arrow.png
:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<script type="text/javascript" src="jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.10.custom.min.js"></script>
<style type="text/css">
.hidden{
padding:5px;
display:inline;
border:1px solid #888888;
font-family:Verdana;
font-size:10pt;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('.hidden').focus(function(){
$(this).css('border', '1px solid #73a6fd');
}).blur(function(){
$(this).css('border', '1px solid #888888');
});
});
</script>
</head>
<body>
<select class='hidden'>
<option>Month:</option>
<option>Jan</option>
</select>
<select class='hidden'>
<option>Day:</option>
<option>1</option>
</select>
<select class='hidden'>
<option>Year:</option>
<option>2011</option>
</select>
</body>
</html>