So, I have a following div's and function:
<div class="show" style="display:none;"> Show only when </div>
Then, jQuery function:
beforeSend : function(){
jQuery('.show').html('?????');
},
How do I make the jQuery function so that it changes the css of class="show" from "display:none" to visible?
Thanks