Sintassi
:button { /* codice */ }
Esempi
<script> jQuery(document).ready(function($) { $("#test_1 :button").css("background-color", "yellow"); }); </script> <div id="test_1"> <button>bottone</button> <input type=button value=input /> </div>
:button { /* codice */ }
<script> jQuery(document).ready(function($) { $("#test_1 :button").css("background-color", "yellow"); }); </script> <div id="test_1"> <button>bottone</button> <input type=button value=input /> </div>
0 Comment