Quote:
Originally Posted by rfresh
I'm trying to get a very simple jquery plugin to work - it's the corners plugin but it doesn't display a rounded rectangle, only the text displays - I must be missing something simple?
Code:
...
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript" src="jquery.corner.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("div.box").corner();
});
</script>
...
|
i'm guessing ur refering to the
corners plugin which means that u've to link to
Code:
<script type="text/javascript" src="jquery.corners.js"></script
and call it like this
Code:
$("div.box").corners();
just as the example tells you to do :|