<!DOCTYPE html>
<html>
<head>
<title>jQuery :visible Selector</title>
<script src="jquery-latest.min.js"></script>
<script>
$(document).ready(function() {
$("p:visible").css('color', 'red');
});
</script>
<style>
.param {
display: none;
}
</style>
</head>
<body>
<h1>Article heading</h1>
<p>first paragraph</p>
<p>second paragraph</p>
<p class="param">third paragraph</p>
</body>
</html>