Browser diversity is good for the web

Develop for the web, not for a browser! Here's a good quick read about why having a single web browser for all operating systems and devices would not be a good thing: medium.com/samsung-internet-dev/because-browser-diversity-is-good-for-the-web-910d1cbcdf3b The article also included this quote from Steve Jobs that I found kind of interesting: β€œWhat’s the point of focusing on making … Continue reading Browser diversity is good for the web

Linking to another page using target=”_blank” can hinder performance and pose a security risk

I recently learned that using target="_blank" to have links open in a new tab causes the new page to run on the same process as your page. If the new link is executing large chunks of JavaScript, your page's performance may also suffer.  But in addition to a potential performance hit, using  target="_blank" is also a security vulnerability. … Continue reading Linking to another page using target=”_blank” can hinder performance and pose a security risk