x x x
x
Only portrait mode is currently supported - please rotate your device.

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

HTML
<script>
  $('#all-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'solid');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
    // Hide all except div 0
    $('div.cardSection').css('display', 'flex');
    $('div.cardSection3').css('display', 'none');
  });
  
  $('#bootcamp-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'solid');
    $('#business-tab').css('border-bottom-style', 'solidunset');
    $('#startup-manual-tab').css('border-bottom-style', 'solidunset');
    // Hide all except div 3
    $('div.cardSection').css('display', 'none');
    $('div.cardSection3').css('display', 'flex');
  });

  $('#business-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'solid');
    $('#startup-manual-tab').css('border-bottom-style', 'unset');
  });
  
  $('#startup-manual-tab').click(function() {
    $('#all-tab').css('border-bottom-style', 'unset');
    $('#bootcamp-tab').css('border-bottom-style', 'unset');
    $('#business-tab').css('border-bottom-style', 'unset');
    $('#startup-manual-tab').css('border-bottom-style', 'solid');
  });
</script>

...