Hi Mike,
well, when i "corner" the div itself like this:
CODE:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.corner.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
jQuery(document).ready(function(){
alert('doc ready!');
jQuery("#home_start_register_button").corner('bevel');
});
//]]>
</script>
</head>
<body>
<div id='home_start_register_button'>
<form action="/registrations/start" method="post">
<input type='submit' value='Register' />
</form>
</div>
</body>
</html>
something funny happens:
The corners are NOT rounded at all, but instead, the left lower corner
is cut off / disappears.
Can somebody reproduce this behaviour?
And even better, can somebody tell me how to get this to work?
On Mar 14, 3:40 pm, Mike Alsup <[email protected]> wrote:
> > jQuery("#home_start_register_button input").corner();
>
> Are you trying to corner an input element? I would not expect that to
> work.