Skip to content

Instantly share code, notes, and snippets.

@UltCombo
Last active December 16, 2015 08:49
Show Gist options
  • Save UltCombo/5408603 to your computer and use it in GitHub Desktop.
Save UltCombo/5408603 to your computer and use it in GitHub Desktop.
var $el = $('#precisaExistir');
//realizamos testes primeiro
if (!$el.length) {
throw '#precisaExistir não encontrado.';
}
//passou pelos testes básicos, executamos a funcionalidade da função/script
$el.css('backgroundColor', 'green');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment