How to hide and show divs using jquery
I made this div to be hidden at first



To hide this div, do :
$('#accepted').hide();
$('#invitation').hide();
->put this hide command in javascript before the trigger create

$('#accepted').hide();
$('#invitation').hide();
$('div#paralel-scanning-inbox').trigger('create');

then, to show the divs again, put :
$('#invitation').show();
$('#accepted').show();

0 Responses

Posting Komentar