Category Archives: Web Related

insertAdjacentHTML

Interesting article from http://hacks.mozilla.org/2011/11/insertadjacenthtml-enables-faster-html-snippet-injection/ “On the computer that I used for testing, the innerHTML way of appending managed to append only slightly over 200 tweets in five full seconds. In contrast, the insertAdjacentHTML(“beforeend”, …) way of appending managed to append … Continue reading

Posted in Web Related | Tagged , , | Leave a comment

Lazy Loading Asynchronous JavaScript

Useful article for keepsake, with a good dose of requirements that I like: Small. I don’t want a big mess for them to include on their sites. 10-15 lines, tops. Stand-alone. The environment is unknown, so we can’t rely on … Continue reading

Posted in Web Related | Tagged , , | Leave a comment

Live website tracking

It’s seldom that I get excited enough about a product to actually write about it. Recently I signed up for http://chartbeat.com for about $10 bucks a month. It allows me to track up to 5 websites. What it does: How … Continue reading

Posted in Web Related | Leave a comment

Nice SEO tips from RSS Pieces

From RSS Pieces: “You need to look for links from EDU pages that have some authority and some valuable content.  To find these pages you use common operators in Yahoo:” linkdomain:example.com site:.edu sponsors linkdomain:example.com site:.edu donors linkdomain:example.com site:.org sponsors linkdomain:example.com … Continue reading

Posted in Web Related | Tagged | Leave a comment

Digital Media for Brands

 

Posted in Web Related | Tagged , , | Leave a comment

Changing Default jQuery AJAX properties

$(document).ready(function() { $.ajaxSetup({ cache: false }); }); http://api.jquery.com/jQuery.ajaxSetup/

Posted in Web Related | Tagged | Leave a comment

Understanding Delete in JavaScript

Really enjoyed reading this elaborate article explaining what can / cannot be deleted in JavaScript. http://perfectionkills.com/understanding-delete/  

Posted in Web Related | Tagged | Leave a comment

Bagging the lot – Design, UI Development, Customised CMS

With jQuery, KnockOutJS and CMSFromScratch, web development has gotten a whole lot easier. Looking forward to creating highly customised content managed websites from design right till finish w/o any need for back-end coding. Uber cool!!!

Posted in Web Related | Tagged , , , | Leave a comment

Disable jump to top of page for Form submit

Short entry for UI improvement: In really long forms, or in a page with multiple forms, I really don’t want the page scroll jumping to the top when I click on the submit button. A quick fix for this: < … Continue reading

Posted in Web Related | Tagged , , , , | Leave a comment