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 () { | |
| var parent = $("#container"); | |
| var divs = parent.children(); | |
| while (divs.length) { | |
| parent.append(divs.splice(Math.floor(Math.random() * divs.length), 1)[0]); | |
| } | |
| }); |
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
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |
| <script>window.jQuery || document.write('<script src="http://www.myurl.com/js/jquery-1.4.2.min.js">\x3C/script>')</script> |
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
| <cfset timestamp = dateDiff( 's', createDate(1970,1,1), now() ) /> |
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
| <!--- strip tags ---> | |
| <cfset stripedString = ReReplaceNoCase(source,"<[^>]*>","","ALL") /> |
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 _gaq = _gaq || [['_setAccount', 'UA-xxxxxxx-1'], ['_trackPageview']]; | |
| ; (function ($, n, d, t, w, s, undefined) { | |
| //Google Analytics Snipper | |
| var g = d.createElement(t); g.type = 'text/javascript'; g.async = true; | |
| g.src = ('https:' == d.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; | |
| var b = d.getElementsByTagName(t)[0]; b.parentNode.insertBefore(g, b); |
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
| add_action( 'init', 'handle_preflight' ); | |
| function handle_preflight() { | |
| // Set the domain that's allowed to make the API call. | |
| header("Access-Control-Allow-Origin: " . get_http_origin()); | |
| // Set the methods | |
| header("Access-Control-Allow-Methods: POST, GET, OPTIONS, PUT, DELETE"); | |
| header("Access-Control-Allow-Headers: Origin, Content-Type, Accept"); | |
| if ( 'OPTIONS' == $_SERVER['REQUEST_METHOD'] ) { |
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
| <ifmodule mod_headers.c=""> | |
| SetEnvIf Origin "^(.*\.alpes\.ch)$" ORIGIN_SUB_DOMAIN=$1 | |
| Header set Access-Control-Allow-Origin "%{ORIGIN_SUB_DOMAIN}e" env=ORIGIN_SUB_DOMAIN | |
| Header set Access-Control-Allow-Methods: "*" | |
| Header set Access-Control-Allow-Headers: "Origin, X-Requested-With, Content-Type, Accept, Authorization" | |
| </ifmodule> |
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
| https://www.zuerioberland-tourismus.ch/de/kontakt-service/veranstaltungskalender?id=588548364 | |
| https://www.zuerioberland-tourismus.ch/de/kontakt-service/veranstaltungskalender/event-588548364 |
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 lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title></title> | |
| <link rel="stylesheet" href="style.css" /> | |
| <!--[if IE]> | |
| <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script> | |
| <![endif]--> | |
| </head> |
NewerOlder