vote up
0
vote down

Introduction to the Reactive Extensions for JavaScript – From Blocking to Async

We’ve covered a bit of ground already in this series on the Reactive Extensions for JavaScript (RxJS) from the basic information, creating observers and observables, jQuery integration and in the last post talking about composing asynchronous methods
Mar 12 2010 02:37 PM
vote up
0
vote down

10 Amazing jQuery Text Effects and Animations

To use jQuery you do not need to be a hardcore coder or developer. JavaScript library to make you can easily insert a jQuery plugin and smoothed the next web project. What if you want something simpler, a little drop-shadow here, a simple text animation
 
denbagus
Mar 12 2010 02:20 PM
vote up
0
vote down

Top 10 Best JavaScript Books that Beginners should Read

if (typeof Meebo == 'undefined') { Meebo=function(){(Meebo._=Meebo._||[]).push(arguments)}; (function(q){ var args = arguments; if (!document.body) { return setTimeout(function(){ args.callee.apply(this, args) }, 100); } var d=document, b=d.body,
Mar 12 2010 04:07 AM
vote up
0
vote down

YQL Geo library – all your geo needs in pure JavaScript

I just finished doing some talks on geo hacking (slides are available here) and how to use some of the Geo technologies Yahoo and Google provide as part of a University gig in Atlanta. As a lot of the students liked the idea of APIs like GeoPlanet and
 
Chris Heilmann
Mar 11 2010 09:44 PM
vote up
0
vote down

ASP.NET MVC 2 RTM for Visual Studio 2008 SP1 Released

by SQLDenis Microsoft has released ASP.NET MVC 2 RTM for Visual Studio 2008 SP1. Note Because Visual Studio 2008 and Visual Studio 2010 RC share a component of ASP.NET MVC 2, installing the ASP.NET MVC 2 RTM release on a computer where Visual Studio 2010
 
SQLDenis
Mar 11 2010 09:41 PM
vote up
0
vote down

Introduction to the Reactive Extensions for JavaScript – Composing Callbacks

So far in this series, we’ve covered some basic information about the Reactive Extensions for JavaScript (RxJS) including creating observables and creating observers as well as jQuery integration.  Now that we have a foundation in some of the basic
Mar 11 2010 01:08 PM
vote up
0
vote down

Javascript: Function scoping

My colleague John Hume wrote an interesting post about his experience with the 'const' keyword in ActionScript where he describes the problems with trying to capture a loop variable in a closure and then evaluating it later on in the code. Since
 
Mark Needham
Mar 11 2010 06:46 AM
vote up
0
vote down

Quick Tip: The Difference Between Live() and Delegate()

In jQuery 1.3, the team introduced the live() method, which allows us to bind event handlers to elements on the page, as well as any that might be created in the future dynamically. Though not perfect, it definitely proved to be helpful. Most notably,
 
Jeffrey Way
Mar 11 2010 12:08 AM
vote up
0
vote down

Redesigned Another Site

I redesigned my wife’s web site, MelissaHarrisPhotography.com. It was built with Photoshop, Illustrator, jQuery, CodeIgniter, CSS3, and tender loving care. You will want to look at it in a browser that understands CSS3 to get the full effect
 
Gabe
Mar 10 2010 10:01 PM
vote up
0
vote down

Convert a JavaScript object to JSON

A colleague of mine was recently searching for a plug-in or script that can convert a JavaScript array to JSON. I asked him to check out JSON.stringify() in the json2.js library, which serializes the JavaScript object into JSON text. Here’s a sample if
Mar 10 2010 07:52 PM
vote up
0
vote down

Css and JavaScript file minification

Performing the minification of your custom JavaScript and Css files is usually a good practice to follow when deploying your website in a production environment, but this usually makes doing ‘on the fly’ and ‘live’ modification to those files nearly
Mar 10 2010 04:54 PM
vote up
0
vote down

Entering The Wonderful World of Geo Location

  I thought I could not be out-geeked. With a background in radio, and having dabbled in the demo scene on the Commodore 64 and hung out on BBSes and IRC for a long time and all the other things normal kids don't quite get, I thought I was safe
 
Christian Heilmann
Mar 09 2010 08:15 PM
vote up
0
vote down

17 jQuery Plugins for Easy and Efficient Reordering and Filtering Page Elements

if (typeof Meebo == 'undefined') { Meebo=function(){(Meebo._=Meebo._||[]).push(arguments)}; (function(q){ var args = arguments; if (!document.body) { return setTimeout(function(){ args.callee.apply(this, args) }, 100); } var d=document, b=d.body,
Mar 09 2010 07:10 AM
vote up
0
vote down

modulr: a CommonJS module implementation in Ruby for client-side JavaScript

modulr is a CommonJS module implementation in Ruby for client-side JavaScript Ruby? what does that have anything to do with it? Ah, its from one of those Prototype guys isn't it.... Yup, Tobie is at it again, this time with modulr: modulr accepts a
 
Dion Almaer
Mar 08 2010 05:10 PM
vote up
0
vote down

Facebook like Expanding Textbox with Jquery.

I received a email request from my reader that asked to me how to implement Facebook like expanding textbox with Jquery. So I had developed a simple tutorial. Take a look at this live demo Download Script Live Demo Javascript Code It works with Jquery
Mar 07 2010 01:39 PM
vote up
0
vote down

Javascript: The 'new' keyword

I came across an interesting post by John Resig where he describes a 'makeClass' function that he uses in his code to create functions which can instantiate objects regardless of whether the user calls that function with or without the new keyword. The
 
Mark Needham
Mar 06 2010 10:49 PM
vote up
0
vote down

Simulating HTML5 Local Storage Support

I have been wanting to use HTML5's local storage for a while, but I haven't had a project where I can just ignore the older browsers. So I put together a little ( <1Kb gzipped ) script that checks for HTML5's local storage API, and simulates the method
 
Brett Wejrowski
Mar 05 2010 11:35 PM
vote up
0
vote down

Image Power Zoomer

Image Power Zoomer is jQuery plugin that adds a magnifier to any image on your page. It lets the user zoom in on any portion of the image by simply moving cursor over it. Furthermore, the magnification power can be adjusted on the fly by turning the
 
W3Avenue Team
Mar 05 2010 12:57 PM
vote up
0
vote down

Introduction to the Reactive Extensions for JavaScript – jQuery Integration

So far in this series, we’ve discussed the intent of the Reactive Extensions for JavaScript (RxJS) and how to create the publishers (Observables) and subscribers (Observers).  Along the way, we’ve talked a little about integration with other
Mar 05 2010 12:54 PM
vote up
0
vote down

jQuery 1.4 Reference Guide – Free Book Giveaway, Comment to win

The book has been revised and updated for version 1.4 of jQuery, and it offers an organized menu of every jQuery method, function, and selector. Each method and function is introduced with a summary of its syntax and a list of its parameters and return
Mar 05 2010 04:31 AM
vote up
0
vote down

Learning jQuery: Your First jQuery Plugin, “BubbleUP”

There are many posts available detailing how to write your own jQuery plugin. It won’t take long before you realize that building in jQuery is very simple. Continuing in our jQuery Learning Series, here we’re going to build your first jQuery
 
Lam Nguyen
Mar 05 2010 02:30 AM
vote up
0
vote down

Jquery Basics Series - 3

Previous series I had discussed about jQuery effects. Now time to talk about custom animation with jQuery using animate(). This is very interesting using this we can make beautiful web projects. Jquery Basics Series - 1 Jquery Basics Series - 2 Custom
Mar 05 2010 02:29 AM
vote up
0
vote down

Twitter Style Load More Results with jQuery and Ajax.

Twitter and Facebook using very nice technique for loading more tweets and updates, when you click the more button old tweets display on the screen. Long days back I had posted an article same like this but I did some mistakes. So in this tutorial I had
Mar 05 2010 02:29 AM
vote up
0
vote down

Display Collapsed Comments like Facebook with Jquery and Ajax

In this post I want to explain Facebook like Collapsed Comments, while clicking View all Comments link it displays all the existing comments. I made a demo with jquery, ajax and php. Take a look at this live demo Download Script Live Demo jQuery Cookbook
Mar 05 2010 02:29 AM
vote up
0
vote down

jQuery and Ajax Best Demos Part-5

A Collection of jQuery, Ajax, JSON and PHP Tutorials with live demos, tutorials posted on 9lessons blog. In these demos I had explained about jquery connectivity with MySQL database, Ajax implementation, JSON with PHP and Animation addons to your web
Mar 05 2010 02:29 AM
vote up
0
vote down

Display Cross Domain Data with Jquery JSON Callback.

Some days back I had posted a tutorial about parsing JSON data with jQuery .getJSON(). In this post I want to explain about 'How to use JSON callback and to display cross domain data with jQuery'. It's simple and useful. Take a look at this live demo
Mar 05 2010 02:29 AM
vote up
0
vote down

Happy Chirsmas Falling Snow jsnow() Jquery plugin.

Hello friends, Happy Christmas greetings. Just take a look at this live demo link. I had used jsnow() jquery snow falling plugin, developed by dummwiam.com. Original Tutorial : www.dummwiam.com/jSnow Live Demo Original Tutorial : www.dummwiam.com/jSnow
Mar 05 2010 02:29 AM
vote up
0
vote down

Twitter like Login with Jquery and CSS.

In this post I want to explain "Twitter like login hide and show effect with jquery and CSS ". Very simple just five line of code using jquery hide() and show() events and little CSS code, use it and enrich your web projects. Take a look at live demo.
Mar 05 2010 02:29 AM
vote up
0
vote down

Jquery Validation with Regular Expressions.

This time I want to explain about "Form validation using regular expressions with jquery". I had developed a tutorial using jquery.validate plugin, It's very simple. Implement this and enrich your web projects. Take a look at live demo Download Script
Mar 05 2010 02:29 AM
vote up
0
vote down

Live Availability Checking with Java.

Some days I had posted an article about User name live availability checking with PHP and jquery. In this post my brother Ravi Tamada explained the same with Java technologies like JSP and servelts using MySQL database. Download Script Live Demo About
Mar 05 2010 02:29 AM
vote up
0
vote down
vote up
0
vote down

Floom: MooTools Slideshow

Floom is an extendible slideshow widget for MooTools 1.2+ that produces very nice blinds effect. It is really easy to use and can also be used to load large images, since it shows a progress wheel while loading images in the background. Floom is cross
 
W3Avenue Team
Mar 04 2010 06:08 PM
vote up
0
vote down

Pintura JSGI Modules

Pintura is a REST-style web framework that provides a comprehensive solution for Ajax-based thin-server applications. However, Pintura has a very modular design, and many of the modules in Pintura are extremely useful as standalone JavaScript/CommonJS
 
Kris Zyp
Mar 04 2010 01:58 PM
vote up
0
vote down

35+ Essential Submit Button Enhancements

if (typeof Meebo == 'undefined') { Meebo=function(){(Meebo._=Meebo._||[]).push(arguments)}; (function(q){ var args = arguments; if (!document.body) { return setTimeout(function(){ args.callee.apply(this, args) }, 100); } var d=document, b=d.body,
Mar 04 2010 03:25 AM
vote up
0
vote down

Show special characters in javascript alert

Are you facing problem in showing special character in javascript alert ? Are you facing problem in showing language special characters in javascript alert ? I was working in danish, french and other international language and validating form using
 
Rakshit Patel
Mar 03 2010 10:33 AM
vote up
0
vote down

Bing Maps JS: Calculate Area of Circle and Draw Circle on Map

Something that can be usefull at times in being able to calculate the total Area of a circle, especially when plotting it on a map. So, I decided to slightly modify my "Draw a Circle Radius Around Lat/Lng Point" to make it also calculate the Area of the
Mar 03 2010 12:37 AM
vote up
0
vote down

The jQuery animate() step callback function

If you’ve ever needed to do more complex animations than fades and slides, then you’ve probably encountered the jQuery animate function. The animate function allows you quite a bit more flexibility than just using fadeOut or slideDown. In
 
cdmckay
Mar 02 2010 05:57 PM
vote up
0
vote down
vote up
0
vote down
vote up
0
vote down

10+ useful code snippets to develop iPhone friendly websites

When developing websites, you have to care about different browsers, as well as mobile devices such as iPhones or iPods. In this article, let's have a look at the 10+ most useful code snippets (Javascript, PHP, CSS, etc) for developing iPhone friendly
 
Jean-Baptiste Jung
Mar 01 2010 10:09 PM