Last active
December 11, 2015 23:19
-
-
Save rodrigo-x/4676225 to your computer and use it in GitHub Desktop.
bobagem...
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 Orc = (function () { | |
"use strict"; | |
var $caps = $('#caps_tipo_orc .tipo_orc'); | |
$caps.on('click', function () { | |
var $id = $('#' + event.target.id); | |
var $active = $('#caps_tipo_orc .tipo_orc_active'); | |
//oculta item já marcado | |
$active.children().toggleClass('objVisivel'); | |
$active.removeClass('tipo_orc_active'); //ok | |
//muda cor do elemento clicado | |
$caps.addClass('tipo_orc_active'); | |
//revela novo ícone | |
$id.children().toggleClass('objVisivel'); | |
}); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment