All important links you must remember as a web developer

All important links you must remember as a web developer point of view so you quickly perform related tasks. I am listing below all related links that i found useful for site development and testing. Google lists all CDN libraries at this URL https://developers.google.com/speed/libraries/ https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js Few sites page seed testing sites …

Make a one time popup in jQuery

Make a one time popup in jQuery for a quick project. You will have to create two functions. to set a cookie function setCookie(cname,cvalue,exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = “expires=” + d.toGMTString(); document.cookie = cname+”=”+cvalue+”; “+expires; }   to get a cookie function getCookie(cname) { var name = …

Defer iframe for your website to make your website loading fast

Defer iframe for your website to make your website loading fast. iframe source loading took some time and which blocks other scripts to load  as quickly as you can. We can defer the iframe so the other scripts can load quickly and our iframe will be loading after page scripts is fully loaded. This method …