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
| (function(){ | |
| function toggleMute() { | |
| $(".mute_btn:first").click(); | |
| } | |
| toggleMute(); | |
| console.log("muted!"); | |
| var $messagesDiv = $(".messages"); | |
| function onMessageReceived(event) { | |
| if (event.target.tagName !== "DIV") { |
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
| /* | |
| * by Dan Heberden / 2011 | |
| * demo at http://jsfiddle.net/danheberden/VjKMY/ | |
| * made just for Elijah Manor | |
| * e.g. | |
| * $( 'div' ).findData( 'theDataKey', 'theValue' ); | |
| * | |
| * will search in the divs and their children | |
| */ | |
| (function( $ ){ |
NewerOlder