<script type="text/javascript">
$(document).ready(
function()
{
$(".boxcaption").css({ opacity: .5 })
}
);
</script>
$(document).ready(
function()
{
$(".boxcaption").css({ opacity: .5 })
}
);
</script>
Here ".boxcaption" is a class name of a div element where the opacity .5 ( 50%) will take place.
That’s it.
