Search the article archives
 
Total: 4,584 articles

Powered by HiveFire

Scriptych

Home | All Articles | Entities | Email Newsletter | Comments | Login | Register

Categories: Dojo, ExtJS, jQuery, Prototype, YUI

1 2 3 4 ... 16 17 Next»
Articles for category "jQuery"
jQuery Table Drag’n Drop Plugin
Free Web Resources (15 hours, 25 min ago) jQuery
4 Jul jQuery Table Drag and Drop plugin simply adds drag’n drop functionality to tables. Table drag’n dropping can’t be handled by standard drag’n dropping utilities as you need to move the whole row, not just the cell that receives the mouse events and re-parenting the row also requires specific code. jQuery Table Drap Drop This drag and drop plugin: * Allows the user to reorder rows within a table. ...
- JQuery.Gallery 1.1.1
snowcovered.com (19 hours, 39 min ago) jQuery
posted by join li on 7/3/2008 join li active since 7/1/2007 0 (0 reviews) Price: 39.99 (_) $99.99 Enterprise Edition Add to Cart Add to Watch List E-mail This Categories DotNetNuke 4 > Modules > Graphics & Images DotNetNuke 4 > Modules > Graphics & Images > Album DotNetNuke 4 > Modules > Graphics & Images > Gallery DotNetNuke 4 > Modules > Graphics & Images > Slide Show Tags ...
- 37 More Shocking jQuery Plugins
3car.blogspot.com (20 hours, 35 min ago) jQuery
Labels: general jQuery Sliders 1) Slider Gallery- A similar effect used to showcase the products on the Apple web site. This ‘product slider’ is similar to a straight forward gallery, except that there is a slider to navigate the items, i.e. the bit the user controls to view the items. Simple stuff. * Live Demo: Here 2) Accessible slider- Illustrations and code samples showing how to make a slider UI ...
- 50+ Amazing Jquery Examples- Part1
3car.blogspot.com (21 hours, 40 min ago) jQuery
Labels: general Sliding Panels 1) Sliding Panels For jQuery - Element can start open or closed and will be toggled from their own original position. 2) jQuery Collapse -A plugin for jQuery to collapse content of div container. Menu 3) LavaLamp menu 4) A Navigation Menu- Unordered List with anchors and nested lists, also demonstrates how to add a second level list. menu 5) SuckerFish Style menu Tabs 6) jQuery ...
Table Drag and Drop jQuery plugin
Simon Willison’s Weblog (22 hours, 38 min ago) jQuery

Rounded Corners: Comparing jQuery Corner with the AJAX Control Toolkit
Geekswithblogs.net (23 hours, 33 min ago) jQuery

Jquery Lightbox Test2
Erikka Innes (Jul 4 2008) jQuery

JQuery photo gallery
scriptlance.com (Jul 3 2008) jQuery
Description: We have a project requiring a . You will need to use the plugin at: http://benjaminsterling.com/jquery-jqgalscroll-photo-gallery/ THe PHP CMS we have will have to write to an XML file, to allow the admin to change the photos and descriptions. Current gallery is at www.goddessofbabylon.com.au (collections) Everything on this goddessofbabylon.com.au design must stay the same, except the thumbnail images will be removed, and the product description and name will be
Advanced Javascript by Example: A First Look Into jQuery UI
good-tutorials.com (Jul 3 2008) jQuery

Ajaxy Google Charts with JSON and Jquery
digg.com (Jul 3 2008) jQuery

jQuery - Load Data From Other Pages
Web Builder Zone (Jul 3 2008) jQuery
[link] [comments]
jQuery: Hide Sidebar Sections
ledgerpad.ath.cx (Jul 3 2008) jQuery
* * Design For The User First * Changing the Web with jQuery * New TLDs — What it Means * STAIN The Reader * No-WWW Firefox 3 ♥ JQuery is a javascript libary and has a lot of uses for expanding sites functionality, without disabiling it for visitor without javascript. It works by using css ids and classes, along with html tags to add events and other functions to ...
An overview of jQuery.browser
Web Developer Blog (Jul 3 2008) jQuery
If you are a user of jQuery, you may be aware of the basic browser sniffer that comes with it. However, it may seem to return the wrong version number for certain browsers (Firefox and Safari in particular). This is because it returns the version number of the rendering engine (i.e. the part of the web browser that determines how a page should look and function). To help simplify things, ...
JavaScript Plugins; The beauty of loosely coupled code
Ajaxian (Jul 3 2008) jQuery
James Coglan wrote a piece on There is no such thing as a JavaScript plugin that uses jQuery as a use case for how simple it is to have a plugin contract. When you think about plugins in many environments, you have strict contracts through interfaces that you have to implement. With jQuery, you can just [...]
jQuery Display a “loading” indicator
Asif’s Weblog (Jul 3 2008) jQuery

jQuery UI Accordion Callback and Dynamic Content Height
Springenwerk Blog (Jul 3 2008) jQuery
This is just a quick note. I'm using jQuery (via the Google Ajax Libraries API) and jQuery UI Accordion in an OpenSocial application. I need to know which accordion page is about to show and I need the accordion to dynamically change height according to the new contents. So this is how you do it: First your HTML markup... Images Loading... Videos Loading... Files Loading... And this is how you'd ...
Comment on Introduction to jQuery UI by Sam
Learning jQuery (Jul 3 2008) jQuery
Introduction to jQuery UI After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. A very exciting CSS theming application was also released with jQuery UI 1.5, ...
Adventures in jQuery
harrisfamily.net.nz (Jul 3 2008) jQuery
[link] [comments]
jQuery thinks flXHR is… irrelevant?
flensed (Jul 2 2008) jQuery
Shade | flXHR | Wednesday, July 2nd, 2008 I learned some saddening news just now, related to close-mindedness on the part of the jQuery devs. I filed this ticket on behalf of our project and our community a week or two ago: http://dev.jquery.com/ticket/3087 The problem is that jQuery’s architecture makes it difficult (but not impossible, see http://flxhr.flensed.com/demo.php#demo12) to adapt in a replacement for XHR. Many of the other major frameworks ...
Comment on Introduction to jQuery UI by Marc Grabanski
Learning jQuery (Jul 2 2008) jQuery
Introduction to jQuery UI After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. A very exciting CSS theming application was also released with jQuery UI 1.5, ...
jQuery AJAX trick (very useful!)
Front end developer blog (Jul 2 2008) jQuery
3 Jul Did you ever ask yourself how can you display a “loading” indicator when you make ajax calls using various libraries? The simple but efficient answer is this: 1 2 3 4 5 6 $(document).ready(function(){ $('Loading...') .ajaxStart(function() {$(this).show();}) .ajaxStop(function() {$(this).hide();}) .appendTo('body'); }); And that’s all. You need to do this only once. Ofcourse, you can apply some CSS styles to #busy div, using an image generated with ajaxloa
Comment on Introduction to jQuery UI by Karl Swedberg
Learning jQuery (Jul 2 2008) jQuery
Introduction to jQuery UI After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. A very exciting CSS theming application was also released with jQuery UI 1.5, ...
Comment on Introduction to jQuery UI by Henrik
Learning jQuery (Jul 2 2008) jQuery
Introduction to jQuery UI After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. A very exciting CSS theming application was also released with jQuery UI 1.5, ...
Comment on Introduction to jQuery UI by Michael
Learning jQuery (Jul 2 2008) jQuery
Introduction to jQuery UI After many months of stellar work, the jQuery UI team has released version 1.5 of their flagship suite of user-interface widgets, components, and effects. This release was focused on bringing you a standardized development API across all of the components, allowing for a more seamless experience when working with the jQuery UI library. A very exciting CSS theming application was also released with jQuery UI 1.5, ...
1 2 3 4 ... 16 17 Next»