Skip to main content

Lindsay Donaghe's Library tagged ajax   View Popular

09 Mar 09

40 Useful JavaScript Libraries | Developer's Toolbox | Smashing Magazine

A good collection of jQuery plugins for form skinning, data manipulation and visualization and a few other niceties.

www.smashingmagazine.com/...ibraries-for-specific-purposes - Preview

jquery javascript libraries downloads free development web ajax ria

jQuery File Tree

"jQuery File Tree is a configurable, AJAX file browser plugin for jQuery. You can create a customized, fully-interactive file tree with as little as one line of JavaScript code.

Currently, server-side connector scripts are available for PHP, ASP, ASP.NET, JSP, and Lasso. If you’re a developer, you can easily make your own connector to work with your language of choice. "

abeautifulsite.net/notebook.php - Preview

jquery javascript libraries downloads free development web ajax ria

jScrollPane

"jScrollPane is a jquery plugin which allows you to replace the browsers default vertical scrollbars on any block level element with an overflow:auto style. You can easily control the apperance of the custom scrollbars using simple CSS."

jScrollPane is crossbrowser, working on all browsers that support jquery and it also degrades gracefully. If a user's browser doesn't support jQuery or has JavaScript turned off then they will see the browsers default scrollbars. If the mouse wheel plugin is included in the page then the scroll panes will respond to mouse wheel events as well.

www.kelvinluck.com/...jScrollPane.html - Preview

jquery javascript libraries downloads free development web ajax ria scrolling

Embed QuickTime | jQuery Plugin

"Embed QuickTime is a jQuery plugin that helps you embed QuickTime movies to play directly on your webpage, instead of redirecting your video to a separate page or forcing you to embed a video using Flash. It changes regular image links to the embedded QuickTime video when they are clicked.

Optionally, Embed QuickTime creates a "share" link giving each viewer copy & paste code to post on their own websites.

It works with QuickTime (mov, mp4, m4v, 3gp), audio (mp3, wav, aiff, m4a) and Windows Media (avi, wmv, mpg).

The plugin is released under the MIT License. Modify and use as you please."

www.solitude.dk/...embedquicktime - Preview

jquery javascript libraries downloads free development web ajax ria video flash quicktime

Setting Equal Heights with jQuery | Filament Group, Inc.

"We wrote a script to "equalize" the heights of boxes within the same container and create a tidy grid — with little overhead.

Creating the visual effect of equal-height columns or content boxes has been a challenge ever since we abandoned table-based layouts. When developing complex web applications or site designs we've found that it often makes the most sense from a usability and performance standpoint to use a simple JavaScript workaround: our equalHeights() function determines the heights of all sibling elements in a container, and then sets each element's minimum height to that of the tallest element. When JavaScript is disabled, the boxes or columns appear with varying heights, but the content remains legible and the page is still completely usable."

www.filamentgroup.com/...ting_equal_heights_with_jquery - Preview

jquery javascript libraries downloads free development web ajax ria

All Marked Up / Projects / jQuery URL Parser

A jQuery plugin to parse URLs and provides easy access to information within them, such as the protocol, host, port, the segments that make up the path and the various query string values.

The parser is based on the Regex URI parser by Stephen Levithian - http://blog.stevenlevithan.com/archives/parseURI.

projects.allmarkedup.com/jquery_url_parser - Preview

jquery javascript libraries downloads free development web ajax ria

20 Oct 08

50 Excellent AJAX Tutorials | Tutorials | Smashing Magazine

Large collection of javascript tutorials around Ajax and RIA. Some are jQuery based but not the majority. Includes things such as a shopping cart, chat, RSS tickers, client-side repeaters, gCal integration, checking browser history, continuous pagination and more.

www.smashingmagazine.com/...50-excellent-ajax-tutorials - Preview

javascript jquery web development tutorials ajax ria linklist

30 Sep 08

Why ASP.NET AJAX UpdatePanels are dangerous | Encosia

Good arguments against over-use of UpdatePanels and some sample script of how to replace their functionality with JSON calls.

encosia.com/...jax-updatepanels-are-dangerous - Preview

codesnippets asp.net ajax troubleshooting web development tutorials

  • <asp:ScriptManager ID="ScriptManager1" runat="server"
    EnablePageMethods="true" />
    <script language="javascript">
    function UpdateTime() {
    PageMethods.GetCurrentDate(OnSucceeded, OnFailed);
    }
     
    function OnSucceeded(result, userContext, methodName) {
    $get('Label1').innerHTML = result;
    }
     
    function OnFailed(error, userContext, methodName) {
    $get('Label1').innerHTML = "An error occured.";
    }
    </script>
    <asp:Label runat="server" ID="Label1" Text="Update Me!" /><br />
    <input type="button" id="Button2" value="Web Method Update"
    onclick="UpdateTime();" />
  • [WebMethod]
    public static string GetCurrentDate()
    {
    return DateTime.Now.ToLongDateString();
    }
19 Sep 08

Ajaxian » Simon Willison, @Media Ajax

Nice article on how to make Ajax applications more secure and resistant to things like cross-site scripting (xss) and cross-site request forgery (csrf).

ajaxian.com/...simon-willison-media-ajax - Preview

security ajax web development xss bestpractices

03 Aug 08

Color Theory @ ColorJack

A suite of color tools and palette visualizers. Your creations can be downloaded for Photoshop and Illustrator. Some interesting things to play with though not particularly intuitive interfaces.

www.colorjack.com - Preview

color palettes tools design generator downloads ajax

27 Jul 08

Flexigrid

A plugin for jQuery that can render nice grids. Possibly a replacement for the DataGrid server controls on ASP.Net.

www.webplicity.net/flexigrid - Preview

jquery plugin javascript grid ajax visualization data downloads library

10 Jun 08

Tech Facts at Your Fingertips | Refcardz

Nice topical reference materials and guides you can download as PDF. Free with registration to dZone which isn't a horrible thing. :)

refcardz.dzone.com - Preview

development web reference pdfs downloads free tutorials jquery javascript windows ajax

47+ Excellent Ajax CSS Forms

Collection of demos of Ajaxy forms as examples of different ways to handle data validation, required fields and other problems with form design.

www.noupe.com/...-excellent-ajax-css-forms.html - Preview

ajax ria linklist demos forms design web development

02 Jun 08

The Sea of Ideas » Blog Archive » Coverflow, anyone?

Using WebKit's latest implementation (Safari 3.1) to exhibit CSS transforms. It's really cool! Still works but not as "slick" in other browsers because of the jQuery slider, and the author is going to port it to work with the new canvas element supported in FireFox 3.0.

paulbakaus.com/?p=6 - Preview

jquery javascript webkit css demos ajax ria coolstuff safari

28 May 08

Eric M. Martin » SimpleModal

a jQuery plugin for creating modal dialogs. Has some pretty advanced features despite the SimpleModal name.

www.ericmmartin.com/...simplemodal - Preview

jquery javascript plugins libraries downloads web development ajax

27 May 08

AjaxDaddy - Ajax Examples in Action

Archive of javascript applets and demos made with various popular libraries like jQuery and MooTools. A good stop if you're looking to add functionality and need some inspiration or to grab something someone else already made!

www.ajaxdaddy.com - Preview

ajax ria javascript jquery mootools demos linklist archive

26 May 08

Horizontal JavaScript Accordion 1kb - Web Development Blog

Very lightweight script to do the horizontal accordian type interface that's similar to the one found on the MooTools homepage. Pretty impressive that it doesn't require any other libraries and is only 1K.

www.leigeber.com/...ntal-javascript-accordion-menu - Preview

javascript libraries free web devleopment downloads ajax ria

1 - 20 of 173 Next › Last »
Showing 20 items per page

Highlighter, Sticky notes, Tagging, Groups and Network: integrated suite dramatically boosting research productivity. Learn more »

Join Diigo