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
jQuery.fn.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
var aa=[]; | |
$($0).find("option").each(function(i,el){ | |
var htmlCont = $(this).html(); | |
aa.push(htmlCont) | |
console.log($(this).html()); | |
}) |
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
// Template | |
// ================= | |
/*! | |
* jQuery Templates Plugin 1.0.0pre | |
* http://github.com/jquery/jquery-tmpl | |
* Requires jQuery 1.4.2 | |
* | |
* Copyright Software Freedom Conservancy, Inc. | |
* Dual licensed under the MIT or GPL Version 2 licenses. | |
* http://jquery.org/license |
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 cssRule = `.__web-inspector-hide-shortcut__, .__web-inspector-hide-shortcut__ * { | |
display: none !important; | |
}`; | |
function injectStyleRulejQ(rule, id) { | |
var div = $("<div />", { | |
html: '­<style id=' + id + '>' + rule + '</style>' | |
}).appendTo("body"); |
OlderNewer