Archive: Browsers
-
Jul 28, 2011
Comments Offhow to add Beautiful Slide Out Navigation: A CSS and jQuery Tutorial
1. The HTML Structure The only thing we will need for the navigation is a simple unordered list with links inside of the list elements: 1 <ul id="navigation"> 2 <li class="home"><a title="Home"></a></li> 3 <li class="about"><a title="About"></a></li> 4 <li class="search"><a title="Search"></a></li> 5 <li class="photos"><a title="Photos"></a></li> 6 <li class="rssfeed"><a title="Rss Feed"></a></li> 7 <li class="podcasts"><a title="Podcasts"></a></li> 8 <li...
-
Jul 28, 2011
Comments Offhow to add Sweet Thumbnails Preview Gallery
The Markup The HTML structure is going to consist of a main container which will have the image wrapper for the big image, the navigation items and the dot list with the thumbnail preview: 01 <div id="ps_container" class="ps_container"> 02 <div class="ps_image_wrapper"> 03 <!-- First initial image --> 04 <img src="images/1.jpg" alt="" /> 05 </div> 06...
-
Nov 09, 2010
Comments Offall Post of ajax javascript php magento jquery and all web developement related tutorials
Sleek and Smooth animated menu using jQuery by Bagesh singh 1 person liked this Today, I’m going to show you something interesting with jQuery. Yesterday I was thinking something to post something programming related stuff in blog after long time and I came across a website, whose menu impressed me a lot. But checking it...
-
Mar 12, 2010
Comments OffHow to hide actual URL in the status bar of all browsers?
Yesterday, Jacob mailed me and asked me how can I show different text or link in the status bar of browsers like Firefox or safari when mouse is over the link.He found the technique which only worked for IE but not for other browser but...