I have a <div> that is displayed and several <p> which are hidden inside that
<div class="em-booking-form-details">
<p class="ticket-price">
.........
.........
</div>
currently css is
.em-booking-form-details p{
display:none;
}
i have a button register with id=register. when i click this button i want to be displayed all the <p> s . not that i cant use id for <p> and <div> and only use javascript.