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 alertFallback = true; | |
if ( typeof console === "undefined" || typeof console.log === "undefined" ) { | |
console = {}; | |
if (alertFallback) { | |
console.log = function(msg) { | |
alert(msg); | |
}; | |
} else { | |
console.log = function() {}; | |
} |
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 ua = navigator.userAgent; | |
var isIE = ua.indexOf("MSIE") != -1; | |
var ieVersion; | |
var mode = document.documentMode || | |
((/back/i).test(document.compatMode || "") ? 5 : ieVersion) || | |
((/MSIE\s*(\d+\.?\d*)/i).test(navigator.userAgent || "") ? parseFloat(RegExp.$1, 10) : null); | |
function getIEVersion(dataString) { | |
var index = dataString.indexOf("MSIE"); | |
if (index == -1) return; | |
return parseFloat(dataString.substring(index+5)); |
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 numLoaded=0; | |
var minimumToLoad=1; | |
function loadScript( file, type, title ) { | |
//console.log( "javascript: " + "loadScript: " + file ); | |
if ( type == 'js' ){ | |
var script = document.createElement( 'script' ); | |
script.type = 'text/javascript'; | |
script.src = file; | |
if (script.readyState){ |
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 youTubeID; | |
var videoURL = "http://youtube.com/v/youtubeid" | |
if ( isYoutubeFile( videoURL ) == true ) { | |
//do something | |
} | |
function isYoutubeFile(vidURL) { | |
//console.log( "javascript: isYoutubeFile: vidURL: " +vidURL ); | |
var videoURL; |
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 rnd = Math.floor(Math.random()*10000000000); | |
var myVar = "myString" + "_" + rnd; | |
window[ myVar + "_optionalID"] = new classname(); |
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 isMobile; | |
var is_uiwebview = /(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(navigator.userAgent); | |
var is_safari_or_uiwebview = /(iPhone|iPod|iPad).*AppleWebKit/i.test(navigator.userAgent); | |
var ua = navigator.userAgent.toLowerCase(); | |
var isAndroid = ua.indexOf( "android") > -1; | |
if ( isAndroid || is_uiwebview || is_safari_or_uiwebview ) { | |
isMobile = true; | |
//do something | |
} |
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 iframe1 = document.getElementById('myiframeID'); | |
iframe1.onload = function (){ | |
if(this.contentDocument) iframe1.doc = iframe1.contentDocument; | |
else if(iframe.contentWindow) iframe1.doc = iframe1.contentWindow.document; | |
var css = '.myelement{float:right;}', | |
header = iframe1.doc.getElementsByTagName('head')[0], | |
style = document.createElement('style'); | |
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
.img{ | |
user-drag: none; | |
-webkit-user-drag: none; | |
-webkit-touch-callout: none; | |
-moz-user-select: none; | |
-khtml-user-select: none; | |
user-select: none; | |
} | |
/* click through it */ | |
.elem { |
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
<!doctype html> | |
<html> | |
<head> | |
<title>Flix</title> | |
<script src="mobile/js/redirect.js"></script> | |
<script>redirectMobileTo('mobile/index.html');</script> | |
</head> | |
<body> | |
<h1>Flix Homepage</h1> | |
<p><a href="mobile/index.html">Mobile</a></p> |
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
.items li { | |
padding: 0px; | |
display: inline-block; | |
white-space: nowrap; | |
overflow: scroll; | |
-webkit-overflow-scrolling:touch; | |
} |
OlderNewer