ng 'Sadness is, seeing your favorite player getting old': Twitter re... By Published On :: 'Sadness is, seeing your favorite player getting old': Twitter re... Full Article
ng Mortality increases if COVID-19 positive person delays in visiting hospital... By Published On :: Mortality increases if COVID-19 positive person delays in visiting hospital... Full Article
ng Prince Harry-Meghan Markle's biography 'Finding Freedom' to... By Published On :: Prince Harry-Meghan Markle's biography 'Finding Freedom' to... Full Article
ng 'It's not going to go ahead': David Warner gives his verdict... By Published On :: 'It's not going to go ahead': David Warner gives his verdict... Full Article
ng Houseboat sector struggling to stay afloat By www.thehindu.com Published On :: Sat, 09 May 2020 23:12:45 +0530 Owners say it will take a year to bring the tourism sector back on track Full Article Kerala
ng Tracking arrivalsa daunting task By www.thehindu.com Published On :: Sat, 09 May 2020 23:14:15 +0530 Not many turn up at isolation centres Full Article Kerala
ng Corporation arrangements for returnees By www.thehindu.com Published On :: Sat, 09 May 2020 23:15:59 +0530 The city Corporation has made elaborate arrangements for non-resident Keralites ahead of the landing of the first flight from Doha in the capital on S Full Article Kerala
ng Inter, AC Milan back training after lockdown in coronavirus epicentre By Published On :: Inter, AC Milan back training after lockdown in coronavirus epicentre Full Article
ng Barca return to training as La Liga eyes restart By Published On :: Barca return to training as La Liga eyes restart Full Article
ng Computer-aided image processing technique to protect weavers By Published On :: Computer-aided image processing technique to protect weavers Full Article
ng 3 arrested over teachers killing By Published On :: 3 arrested over teachers killing Full Article
ng Amended building construction bye-laws hailed By Published On :: Amended building construction bye-laws hailed Full Article
ng Liquor shops closed pending use of new MRP on products By Published On :: Liquor shops closed pending use of new MRP on products Full Article
ng Culling only way to contain African swine fever: expert By Published On :: Culling only way to contain African swine fever: expert Full Article
ng Forest dept wakes up to fresh Amchang encroachment By Published On :: Forest dept wakes up to fresh Amchang encroachment Full Article
ng NGO charts unique way to induce people into donating By Published On :: NGO charts unique way to induce people into donating Full Article
ng Existing BBCI patients to get therapy By Published On :: Existing BBCI patients to get therapy Full Article
ng Singh hails disciplined NE model of COVID-19 management By Published On :: Singh hails disciplined NE model of COVID-19 management Full Article
ng Centres advisory to NE states on returnees during lockdown By Published On :: Centres advisory to NE states on returnees during lockdown Full Article
ng Poor spare a ‘fistful of rice’ for the hungry By www.thehindu.com Published On :: Sat, 09 May 2020 23:12:09 +0530 1,078 quintals of rice collected from cardholders in 16 mandals of Karimnagar Full Article Telangana
ng Displaying hidden elements like `<head>` using CSS By mathiasbynens.be Published On :: Tue, 20 Apr 2010 22:14:33 +0200 By default, only the html and the body element (plus its children) of a web page are actually rendered. All information within the head element might be parsed and used by the browser, but most of the time it doesn’t get displayed. If you want to, you can use CSS to display these ‘hidden’ elements. Full Article
ng Bulletproof HTML5 `<details>` fallback using jQuery By mathiasbynens.be Published On :: Sun, 25 Apr 2010 15:39:49 +0200 The HTML5 element is currently not natively supported in any browser natively supported in Chrome 12 and up. This makes it a little hard to guess how exactly this new element will behave, but reading the spec gives us a pretty good idea. While we wait for browsers to implement it, how about we create a fallback/polyfill for browsers who don’t understand (yet)? Full Article
ng Using Showdown/PageDown with and without jQuery By mathiasbynens.be Published On :: Sun, 02 May 2010 23:03:31 +0200 Showdown (also known as PageDown) is a JavaScript parser for Markdown-formatted text. It’s used on this site to generate a formatted preview of your comment as you type it. Showdown is library-agnostic, but fortunately, using it with jQuery isn’t much of a problem. Full Article
ng Using `setTimeout` to speed up `window.onload` By mathiasbynens.be Published On :: Tue, 14 Sep 2010 12:08:56 +0200 A few days ago, Martín Borthiry contacted me with a question. He had been using the optimized asynchronous Google Analytics snippet for a while, and noticed an additional speed gain when wrapping it inside a setTimeout() with a delay of 0 milliseconds. His tests made it pretty clear that this technique was indeed slightly faster, but Martín had no clue why. Full Article
ng Using CSS without HTML By mathiasbynens.be Published On :: Tue, 14 Dec 2010 15:13:38 +0100 The following article was published on CSS-Tricks as a guest post. Full Article
ng Completing Dropbox’s Dropquest 2011 in 60 seconds By mathiasbynens.be Published On :: Sun, 16 Jan 2011 17:13:31 +0100 Dropbox organized a scavenger hunt named Dropquest the other day. The first 81 people to complete all steps won some nice prizes, but everyone participating in the quest can get 1 GB of extra Dropbox storage space. Full Article
ng Everything you always wanted to know about touch icons By mathiasbynens.be Published On :: Wed, 02 Mar 2011 08:09:06 +0100 “Touch icons” are the favicons of mobile devices and tablets. Adding them to your web page is relatively easy, but it gets more complicated as you target different devices and firmware versions. Let’s dive in! Full Article
ng Using the `oninput` event handler with `onkeyup`/`onkeydown` as its fallback By mathiasbynens.be Published On :: Wed, 11 May 2011 09:31:52 +0200 HTML5 standardizes the oninput event handler, which should be used to detect user input in JavaScript. Sure, you could use onkeydown or onkeyup instead, but those were never really designed for this particular use case, and it shows. Full Article
ng In defense of CSS hacks — introducing “safe CSS hacks” By mathiasbynens.be Published On :: Thu, 19 May 2011 13:54:00 +0200 I am writing this article because I noticed there’s a lot of misunderstanding on the subject of CSS hacks. How do you target Internet Explorer in your CSS? Do you use CSS hacks, conditional stylesheets or something else? Full Article
ng JavaScript’s internal character encoding: UCS-2 or UTF-16? By mathiasbynens.be Published On :: Fri, 20 Jan 2012 22:18:54 +0100 Does JavaScript use UCS-2 or UTF-16 encoding? Since I couldn’t find a definitive answer to this question anywhere, I decided to look into it. The answer depends on what you’re referring to: the JavaScript engine, or JavaScript at the language level. Full Article
ng Loading JSON-formatted data with Ajax and `xhr.responseType='json'` By mathiasbynens.be Published On :: Wed, 24 Jul 2013 23:14:15 +0200 This post explains a hidden gem in the XMLHttpRequest standard that simplifies fetching and parsing JSON data through Ajax. Full Article
ng Hiding JSON-formatted data in the DOM with CSP enabled By mathiasbynens.be Published On :: Tue, 27 Aug 2013 16:32:01 +0200 If Content Security Policy is enabled for protection against cross-site scripting attacks (i.e. the unsafe-inline option is not set), the use of inline