apply shadow for header <h3> tag using jquery
Is it possible to apply shadow for header <h3>
tags jquery....
alt text http://img541.imageshack.us/img541/9603/57972600.jpg
Here home,Manage users,Enquiry and reports are headers and i开发者_运维百科 would like to add shadow to it... I looked for jquery shadow plugin which has div samples but how to apply the same for header tags?
<script type="text/javascript">
$(function(){
$("#exampleDiv").shadow({
width:5,
startOpacity:60,
endOpacity:10,
cornerHeight:8,
color:"#000000"
});
})
</script>
does this won't work?
$(function(){
$("h3").shadow({
width:5,
startOpacity:60,
endOpacity:10,
cornerHeight:8,
color:"#000000"
});
})
精彩评论