Last active
December 16, 2015 08:49
-
-
Save UltCombo/5408603 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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