9 lines
261 B
JavaScript
9 lines
261 B
JavaScript
|
$("footer").hide();
|
||
|
function hideBannerAndImage() {
|
||
|
$("div.banner-wrapper").hide();
|
||
|
$("div.ticket-img-wrapper").hide();
|
||
|
$('input[type=checkbox]').each(function() {
|
||
|
$(this).prop('checked', true);
|
||
|
});
|
||
|
}
|
||
|
setTimeout(hideBannerAndImage, 300);
|