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 cancelFullScreen(el) { | |
| var requestMethod = el.cancelFullScreen||el.webkitCancelFullScreen||el.mozCancelFullScreen||el.exitFullscreen; | |
| if (requestMethod) { // cancel full screen. | |
| requestMethod.call(el); | |
| } else if (typeof window.ActiveXObject !== "undefined") { // Older IE. | |
| var wscript = new ActiveXObject("WScript.Shell"); | |
| if (wscript !== null) { | |
| wscript.SendKeys("{F11}"); | |
| } |
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 distance(lat1,lon1,lat2,lon2) { | |
| var R = 6371; // km (change this constant to get miles) | |
| var dLat = (lat2-lat1) * Math.PI / 180; | |
| var dLon = (lon2-lon1) * Math.PI / 180; | |
| var a = Math.sin(dLat/2) * Math.sin(dLat/2) + | |
| Math.cos(lat1 * Math.PI / 180 ) * Math.cos(lat2 * Math.PI / 180 ) * | |
| Math.sin(dLon/2) * Math.sin(dLon/2); | |
| var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); | |
| var d = R * c; | |
| if (d>1) return Math.round(d)+"km"; |
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
| setTimeout(function(){alert("Hello")},3000); | |
| setTimeout("zoom()",3000); |
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
| -webkit-touch-callout: none; | |
| -webkit-user-select: none; | |
| -khtml-user-select: none; | |
| -moz-user-select: none; | |
| -ms-user-select: none; | |
| user-select: none; |
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
| $( "#book" ).animate({ | |
| opacity: 0.25, | |
| left: "+=50", | |
| height: "toggle" | |
| }, 5000, function() { | |
| // Animation complete. | |
| }); |
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 str = "Visit Microsoft!"; | |
| var res = str.replace("Microsoft","W3Schools"); |
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 add_element(content, element, type,id) { | |
| jQuery(element).append(jQuery('<' + type + ' id="'+id+'">').append(content)); | |
| } |
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 str = "Hello World!"; | |
| var res = str.toUpperCase(); |
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
| $varobj = get_the_terms( get_the_ID (), "judet" ); | |
| foreach($varobj AS $key => $value ) | |
| { | |
| $arr[] = $value->name; | |
| } | |
| /* | |
| stdClass Object | |
| ( | |
| [term_id] => | |
| [name] => |
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
| /* This is a linear gradient that will go from: | |
| very light grey (#EEE) at the top, | |
| to medium grey (#BBB) at the bottom | |
| */ | |
| .grey_gradient { | |
| /* Graceful fallback for unsupported browsers */ | |
| background: #ccc; | |
| /* Firefox 3.6+ */ | |
| background-image: -moz-linear-gradient(top, #eee, #bbb); | |
| /* Webkit (Safari 4+, Chrome) */ |