i have this div
and this function
<div id="audio1" style='display:none; >
$(document).ready(function() {
$("#p1").on( "click", function() {
$("#audio1").toggle(1500);
});
});
where do i need to put hide().
methodinside document ready to make the element hidden by default or use cssdisplay:none$('#audio1").hide()initially.