Last active
December 11, 2015 12:58
-
-
Save saleiva/4604263 to your computer and use it in GitHub Desktop.
Delete clicked div and the following ones (jquery)
This file contains 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 array_de_divs = $('div'); | |
$('div').bind('click',function(){ | |
var indice_clickado = $(this).index() | |
for(i=indice_clickado;i<=a.length-1;i++){ | |
$(a[i]).hide() | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment