[CSS] & [JQUERY] [selettore] :header

:header (selettore CSS e jQuery) (solo jQuery) riguarda gli Elementi HTML <h1><h6>.

Sintassi

$(":header")

Esempi

<script>
jQuery(document).ready(function($){
    $("#test :header").css("background-color", "yellow");
});
</script>
<div id=test>
<h1>titolo 1</h1>
<p>Questo è un paragrafo.</p>
<h5>titolo 5</h5>
<p>Questo è un altro paragrafo.</p>
</div>

titolo 1

Questo è un paragrafo.

titolo 5

Questo è un altro paragrafo.

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

jquery, selettori css e jquery

Related Articles

0 Comment

Rispondi