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

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. 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… Continue reading jQuery File Upload – With Drag n’ Drop

jQuery Gloss Plugin

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. 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.… Continue reading jQuery Gloss Plugin

Apply a custom font to your website, Works on all Browsers

For web developers and web designers who want to add their FONT to websites without using Standard Web Fonts and without making text as images. Google has create a Google Font API for public use to give web developers and web designers the ability to use extra fonts on the web, not only the standard… Continue reading Apply a custom font to your website, Works on all Browsers

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 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