Misc
I have been into many situations while converting designs to HTML where designs demanded a custom select menu. There is a simple solution to this by W3Schools. You can copy and modify what’s needed without getting deep down to the basics and mechanism. DEMO See...
Misc
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 –...
Misc
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 –...
Misc
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...
Misc
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;...