Today's Question:  What does your personal desk look like?        GIVE A SHOUT

 WEB DESIGN


  Mozilla Firefox Browser Tips & Tricks You Didn't Know About

Chrome might be all the rage right now, but Mozilla’s Firefox browser has always held its own in the browser wars. This open-source browser has its core set of dedicated fans and is popular under a broad user base across the world. With Firefox’s faster web page download speeds and strong privacy policies, it’s not hard to imagine why. But there are some other brilliant features that many might have missed.Take a look at these seven Firefox tricks that many users don’t know about. Not only will they provide a better browsing experience, but they’ll add some extra ...

1,803 0       FIREFOX NORDPASS


  Extension context menu is missing in Firefox after restart

If you have experience of writing Chrome extension, you may be familiar with how you can add a context menu for your extension. The code would be similar to below:chrome.runtime.onInstalled.addListener(function() { chrome.contextMenus.removeAll(); chrome.contextMenus.create({ "id": "your_id", "title": "Your Title", "contexts": ["all"] });});You need to add a listener listening to the extension install event. Once the extension is installed, create a context menu item with id your_id which applies to all elements on the page. After installing the extension, you wou...

2,533 0       CHROME EXTENSION FIREFOX CONTEXT MENU


  Chrome to provide native image lazyload support

Previously we have introduced how Medium achieved loading images lazily, basically what they did was using lots of HTML tags and CSSs to change the images at different stage. It needs lots of code to do this. With the high demand of this feature for resource consumption and performance consideration, Chrome is now working on a feature to provide native support for loading images/iframes lazily. This feature is named lazyload.lazyload will allow three values:auto: the default behavior of lazyload attribute is not altered (user agent decides)on: the feature lazyload is turned on which ...

2,405 0       LAZYLOAD IMAGE CHROME IFRAME


  6 Great Ways to Design Amazing PWA’s

Why PWA v/s Native Mobile apps a wrong question to ask. PWA has already gathered a lot of momentum recently and is structured to give “App like” experience to its user base. Reveal all the extra layers underneath and create magic with brand new ideas to design progressive web apps.What comes to your mind when you imagine leading a progressive life? Definitely, it is going to be far better than  the previous one. Progressive Web Apps (PWA’s) are going to work to outweigh the advantages brought in by the native mobile applications. PWA’s have enlarged the horizon and...

1,483 0       WEB DESIGN PROGRESSIVE WEB APPS PROGRESSIVE WEB APP TECHNOLOGY COMMON UI/UX MISTAKES


  5 Innovative Web Design Trends Startups Should Consider Adopting

Nowadays, every market has the tendency to shift and change on a whim, and it is no different in the world of web design. No one in their right minds has the time to sit and watch the market for possible shifts as it takes up too much time and no one can really predict what’s going to happen so we’re just forced to adapt and improvise. Currently, there are 5 trends that have caused an uproar and have reshaped the online marketplace and are worth looking into.Think BigFirst and foremost, when thinking of design, it is imperative that we think big. This does not mean that we sho...

1,125 0   


  JQuery Mobile App Development Tips

Over the recent years, jQuery has been considered as a popular javascript library for creating rich interface websites and applications. And since the framework was initially meant to design desktop browsers, it doesn’t comprise of many features for building mobile apps. Thus, JQuery Mobile app development came into existence. Prominent jQuery development company offers  cutting-edge framework, a range of user interface elements and features for developers to develop innovative and user-friendly mobile apps.What does a JQuery mobile app do? First, JQuery mobile makes it easy to...

3,642 0       JQUERY DEVELOPMENT COMPANY JQUERY DEVELOPMENT COMPANY INDIA JQUERY DEVELOPERS


  How to Become a Successful Web Designer

All web designers walk a thin line between art and business. Their job is to make a business site flourish, generate leads and revenue, yet – it has to represent the company in the best possible light. In order to achieve greatness in the world of web design, you need a lot of patience, hard work, and persistence. Most of the average designers make quite similar sites, limited in certain ways, and they choose to keep to the already tried out technique, but this can come at a cost for any serious client that wants their website to stand out.The road to becoming a great web designer needs ...

1,775 0       WEB DESIGN WEB DEV


  How to play with cross domain request

What is cross domain requestIn simple, cross domain request is to request resource from other domain in one domain. Note, the "other domain" doesn't just mean domain name only, it includes much more. If the protocol, domain name, port is not the same, two domains will be considered different. Below example describes what is considered as different domain.http://www.a.com/a.jshttp://www.a.com/b.js               # Same domainhttp://www.a.com/lab/a.js         # Same domainhttp://www.a.com/script/b.js     # Same domainhttp://www...

10,798 0       FRONT END JSONP CROSS DOMAIN CROSS ORIGIN CORS DOCUMENT.DOMAIN WINDOW.NAME