Hi,

I am trying to get corner and hover to work together. The code works
properly for FF but fails in IE7..below is my sample script that I have been
trying on..

<html>
<head>
<title>Test Page</title>
<script src="jquery.js" type="text/javascript"></script>
<script src="corner.js" type="text/javascript"></script>
<script type="text/javascript">
        $(document).ready(function(){
                $("div.corner").hover(
                                
function(){$(this).css("background-color","#FFFFCC"); },
                                
function(){$(this).css("background-color","#CCFFCC"); }
                );
                $("div.corner").corner("round 4px").parent().css('padding',
'2px').corner("round 6px");
        });
</script>
</head>
<body>
<div id="parent" style="background-color:#000000;">
        <div class="corner" style="background-color:#CCFFCC;">
                <div>Name: FirstName LastName</div>
                <div>University: The New York State University</div>
        </div>
</div>
</body>
-- 
View this message in context: 
http://www.nabble.com/Corner-%2B-hover-%2B-IE7----not-working-tf3216015.html#a8931197
Sent from the JQuery mailing list archive at Nabble.com.


_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/

Reply via email to