This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
| // modified from code of "JQuerify" bookmarklet | |
| // http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet | |
| (function() { | |
| function z(a, b) { | |
| var c = document.createElement("script"); | |
| c.src = a; | |
| var d = document.getElementsByTagName("head")[0], e = !1; | |
| c.onload = c.onreadystatechange = function() { | |
| !e && (!this.readyState || this.readyState === "loaded" || this.readyState === "complete") && (e = !0, b(), c.onload = c.onreadystatechange = null, d.removeChild(c)); | |
| }; |
This document now exists on the official ASP.NET core docs page.
| /* ---------------------------------------------------------- */ | |
| /* */ | |
| /* A media query that captures: */ | |
| /* */ | |
| /* - Retina iOS devices */ | |
| /* - Retina Macs running Safari */ | |
| /* - High DPI Windows PCs running IE 8 and above */ | |
| /* - Low DPI Windows PCs running IE, zoomed in */ | |
| /* - Low DPI Windows PCs and Macs running Firefox, zoomed in */ | |
| /* - Android hdpi devices and above */ |
To:
Their Data Protection Officer, usually [email protected]
Subject:
Request for erasure (GDPR)
| Submitted on 2012/06/19 at 12:32 am | |
| Hello, just wanted to mention, I enjoyed this blog post. It was practical. Keep on posting! | |
| What’s up, I just wanted to mention, you’re wrong. Your point doesn’t make any sense. | |
| Hello, how’s it going? Just shared this post with a colleague, we had a good laugh. | |
| Incredible points. Great arguments. Keep up the amazing effort. | |
| This text is worth everyone’s attention. Where can I find out more? |
| // Copyright John Leitch 2010 [email protected] | |
| var destination = null; | |
| var useClone = false; | |
| var cloneSource = null; | |
| var cloneDelay = 1000; | |
| function hookInputs() { | |
| var frame = document.getElementById('overlayFrame'); | |
| var keyPressScript = |
| $(document).ready(function () { | |
| // Hide any image that 404 | |
| $('img').bind('error', function () { | |
| $(this).hide(); | |
| }); | |
| }); |