Last active
November 15, 2016 12:18
-
-
Save gekh/be77797b77c308f0b11e49f8beea0d9a to your computer and use it in GitHub Desktop.
Чтобы срабатывало на клик только по последнему элементу (jQuery)
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
jq_object.on('click', '.js-parent :not(.js-child-1, .js-child-2)', function(event) { | |
//your code | |
}); | |
jq_object.on('click', '.js-child-1', function(event) { | |
//your code | |
}); | |
jq_object.on('click', '.js-child-2', function(event) { | |
//your code | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment