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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset='UTF-8'> | |
<title>HTML Document</title> | |
<style type="text/css"> | |
ul li{color: red;} | |
.emphasis{color: green;} | |
</style> | |
</head> |
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
Select Element: | |
There are no events on the option element in IE. | |
The change event on select is the only cross-browser-compatible way to be informed of a change of option. | |
Note that keyboard navigation may also fire this event. |
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
//just add a class for files only and apply how many selected | |
var notchecked = $('input'+topLevelClass(splittedClassNames)+':not(:checked)').length; | |
var checked = $('input'+topLevelClass(splittedClassNames)+':checked').length; | |
var all = $('input'+topLevelClass(splittedClassNames)).length; |
NewerOlder