Skip to content

Instantly share code, notes, and snippets.

@varlen
Last active December 4, 2015 01:15
Show Gist options
  • Save varlen/17c590953ea11bebe6ef to your computer and use it in GitHub Desktop.
Save varlen/17c590953ea11bebe6ef to your computer and use it in GitHub Desktop.
Use este snippet para esconder as sessões 3D no site da Ingresso.com.
// 2015-12-01 - Varlen Pavani Neto
// Use este snippet para esconder as sessões 3D do site da Ingresso.com
// Esconder todas as sessões 3D
var $hateful3dSessions = $('.tipo-sessao.3D').parents('li.place-hours-it');
$hateful3dSessions.hide();
// Esconder os cinemas que só tiverem sessões 3D
var $allTheaterSessions = $hateful3dSessions.parent();
$allTheaterSessions.each( function( ) {
var $theaterSessions = $( this );
var allSessions = $theaterSessions.children().length;
var invisibleSessions = $theaterSessions.children('[style*="display: none"]').length;
if ( allSessions == invisibleSessions ) {
$theaterSessions.parents('article').hide();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment