Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. Hi reader,I have collected 15 free ebooks for front-end development to put it between your hands. Not all are PDF files, some are websites and online samples.
Category: Web & Programming
10 Top jQuery Plugin for Images – 2011
Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. 1) Nivo Slider: A stunning jQuery image gallery with 16 unique transition effects. Comes with many featrues and compatible with most browser versions (IE 7+, Firefox v3+, Google Chrome v4+,… Continue reading 10 Top jQuery Plugin for Images – 2011
15 Free IDEs for Developers
Your ads will be inserted here byEasy Plugin for AdSense.Please go to the plugin admin page toPaste your ad code OR Suppress this ad slot. Komodo Edit (Windows, Mac, Linux) Komodo Edit is an open source application that has support for PHP, Python, Ruby, JavaScript, Perl, Tcl, XML, HTML 5 and CSS 3. It has… Continue reading 15 Free IDEs for Developers
jQuery File Upload – With Drag n’ Drop
jQuery File Upload is a plugin for the popular JavaScript framework that helps handling file uploads. The plugin is based on open standards like HTML5-JavaScript and No Flash. For legacy browsers it falls back to an Ajaxed-like iframe-PHP solution. Multiple files can be selected, they can even be drag ‘n’ dropped from the desktop and… Continue reading jQuery File Upload – With Drag n’ Drop
jQuery Gloss Plugin
It’s lovely to make you webpage interactive. jQuery plugins add effects to multiple elements of HTML. jQuery Gloss adds a Gloss (shining) effect to images by simple and lightweight code. This effect is added on hover effect (mouseover, mouseout). This plugin is ~2.2 Kb and it’s simple as: Add a DIV element to hold the… Continue reading jQuery Gloss Plugin
jQuery Animate – Advanced
In the last jQuery Animate article I wrote, I mentioned how to use the .animate() function with few tricks. But here, I am going to write about jQuery Animate function in general and I will explain few things and some tricks. The jQuery Animate is a smart object because could be used at any syntax.… Continue reading jQuery Animate – Advanced
jQuery: Catch Keyboard Events
Lot of jQuery projects relies on keyboard/mouse event like pressing “p” for previous and “n” for next also using the arrows. Because this is important, I have managed a code to get the keyboard character on 3 events: – Keypress – Keyup – Keydown I have created a function to return the key as below:… Continue reading jQuery: Catch Keyboard Events
jQuery Animate
Here I will mention how to use the jquery animate function and the usability and flexibility of it. The syntax of this function is: $.animate(options, settings, callback); /* you can replace setting with duration (in milliseconds) or words: ‘slow’, ‘normal’ or ‘fast’. callback is optional */ Below is a list of popular and most used… Continue reading jQuery Animate
Scroll window smoothly using jQuery
Using jQuery animate() function to do a smooth scrolling: I have also created a div as follow: <div id=”scrollToHere”> Scroll to here </div> You need something to run your script. Create a button like this: <input type=”button” onclick=”scollWin();” value=”Scroll up” /> The jQuery Code will be like this: function scrollWin(){ $(‘html,body’).animate({ scrollTop: $(“#scrollToHere”).offset().top }, 800);… Continue reading Scroll window smoothly using jQuery
Web page transparency for all browsers
Every browser has different CSS properties for less-used actions like: transparency or opacity. It was something weird to do transparency on your web page because there are lot of different web browsers. To make that easy, I have collected information and generated a CSS class that will work on most of the browsers. See the… Continue reading Web page transparency for all browsers