
Category: Misc
Tips, Scripts, Tools, Bookmarks, and Inspiration for Web Designers and Developers.


Instagram Feed with load more button using Instafeed.js
instagram feed Hello guys, here’s a way I found to add an Instagram feed widget with load more button to your website. Please have a look at the demo below with HTML and JS included. This was made possible with the help of a JS plugin –...
Custom select arrow using background image – HTML/CSS
Custom Select Tag Arrow Here is how you can add a custom arrow to a “select” HTML tag by simply adding a ‘background-image’ and ‘appearance: none’ with CSS. DEMO Open demo in a full window –...
How to use multiple versions of jQuery on the same page?
Yes, you can use multiple versions of jQuery on the same page. To avoid any kind of conflict, use the jQuery.noConflict() method. HTML <html> <head> <script...
Disable user selection on web page elements – CSS
disable user selection on web page elements You can use this style to your web page element if you do not want a user to select it using pointer cursor and that content selected background blue/grey color. CSS .disable-user-seclect{ webkit-user-select: none;...