Can multiple ids be handled like in the code
<script>
$("#segement1,#segement2,#segement3").hide()
</script>
<div id="segement1"/>
<div id="segement2"/>
<div id="segement3"/>
Can multiple ids be handled like in the code
<script>
$("#segement1,#segement2,#segement3").hide()
</script>
<div id="segement1"/>
<div id="segement2"/>
<div id="segement3"/>
Yes,
#id
selectors combined with a multiple selector (comma) is perfectly valid in both jQuery and CSS.However, for your example, since
<script>
comes before the elements, you need adocument.ready
handler, so it waits until the elements are in the DOM to go looking for them, like this: