<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SimcoMedia Professional Web Design &#187; JQuery</title>
	<atom:link href="http://www.simcomedia.com/category/tutorials/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcomedia.com</link>
	<description>Custom Designs And Ecommerce Specialists</description>
	<lastBuildDate>Tue, 17 Aug 2010 21:59:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>JQuery Toggle Panel</title>
		<link>http://www.simcomedia.com/jquery-toggle-panel</link>
		<comments>http://www.simcomedia.com/jquery-toggle-panel#comments</comments>
		<pubDate>Tue, 16 Mar 2010 21:10:36 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ajax scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=828</guid>
		<description><![CDATA[Sometimes we&#8217;re convinced that certain special effects we see in web pages are some sort of cult voodoo and appear mysterious. The &#8216;slide toggle&#8217; effect is one of those. We&#8217;re going to show you just how easy it is to use this cool feature for revealing hidden content. We&#8217;re going to make a simple panel [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we&#8217;re convinced that certain special effects we see in web pages are some sort of cult voodoo and appear mysterious. The &#8216;slide toggle&#8217; effect is one of those. We&#8217;re going to show you just how easy it is to use this cool feature for revealing hidden content.<span id="more-828"></span></p>
<p>We&#8217;re going to make a simple panel slider using the JQuery toggle function. Here&#8217;s how the code will look:</p>
<pre class="[brush:javascript]">
<script type="text/javascript">
$(document).ready(function() {
	$(".trigger").click(function(){
	$(".panel").slideToggle("slow");
	});
});
</script>
</pre>
<h3>Code Explanation</h3>
<p>Let&#8217;s break this down to show how simple it is using JQuery</p>
<dl>
<dt>$(document).ready(function() {</dt>
<dd>Our standard JQuery statement declaring that when the document is fully loaded we can execute the following</dd>
<dt>$(&#8220;.trigger&#8221;).click(function(){</dt>
<dd>Here we are stating that our page element with the class &#8216;trigger&#8217;  is going to do something when it&#8217;s clicked on</dd>
<dt>$(&#8220;.panel&#8221;).slideToggle(&#8220;slow&#8221;);</dt>
<dd>Here we see the details of our instructions for when the &#8216;trigger&#8217; is clicked. Essentially telling the div with the class name &#8216;panel&#8217; to &#8216;slide &#8211; Toggle&#8217; open. The &#8216;Toggle&#8217; part means that it will open when clicked then close when clicked again.</dd>
</dl>
<h3>The HTML</h3>
<p>The HTML is relatively simple. First, though, we need a little styling for our elements</p>
<pre class="[brush:css]">
<style type="text/css">
div.panel,p.trigger {
width: 500px;
padding: 20px;
background-color: #EAEAEA;
border: 1px #000 dashed;
font: normal normal Arial, Helvetica, sans-serif/1.2em;
}

div.panel {
height: 200px;
display: none;
}
</style>
</pre>
<p>Followed by our HTML which is entirely up to you how you want it to look. For our demo purposes we&#8217;re using just the standard Lorem Ipsum text jargon:</p>
<pre class="[brush:html]">
<div class="panel">

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Section 1.10.32 of de Finibus Bonorum et Malorum, written by Cicero in 45 BC

</div>
<p class="trigger">The standard Lorem Ipsum passage, used since the 1500s
</pre>
<h3>Live Demo</h3>
<p>To get a live view of the sliding/toggling panel <a href="http://www.simcomedia.com/jquery-toggle.html" target="_blank">Click Here</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/jquery-toggle-panel/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using JQuery&#8217;s Ajax Functions</title>
		<link>http://www.simcomedia.com/using-jquerys-ajax-functions</link>
		<comments>http://www.simcomedia.com/using-jquerys-ajax-functions#comments</comments>
		<pubDate>Tue, 16 Mar 2010 18:58:42 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=810</guid>
		<description><![CDATA[AJAX methods can be way over used but at the same time can provide a great way to consolidate related content into a confined space. JQuery provides an easy way to use their AJAX functionality with some simple code and, of course, the JQuery library. Here&#8217;s a simple example.First we have to understand the way [...]]]></description>
			<content:encoded><![CDATA[<p>AJAX methods can be way over used but at the same time can provide a great way to consolidate related content into a confined space. JQuery provides an easy way to use their AJAX functionality with some simple code and, of course, the JQuery library. Here&#8217;s a simple example.<span id="more-810"></span>First we have to understand the way JQuery works. Once we&#8217;ve done that then modifying this code becomes much simpler.JQuery is a library of functions that you can call upon to perform various tasks. The ones we will be working with today are the &#8216;load&#8217; and &#8216;onClick&#8217; functions. Our goal is to summon an external file ( .txt, .html, etc.) into an element in our page, preferably a div element. The functions will be called when someone clicks on a hyperlink (or, an image could be used or even a button). Here&#8217;s the basic code:</p>
<pre class="[brush:javascript]">
$(document).ready(function(){
  $("#link1").click(function() {
  $('#text').load('latin.txt');
});
  $("#link2").click(function() {
  $('#text').load('latin2.txt');
});
  $("link3").click(function() {
  $('text').load('latin3.txt');
  });
});
</pre>
<p>Ok, what we&#8217;ve created here is a series of functions that specify the id&#8217;s of 3 hyperlinks (shown below) that, when clicked, will &#8216;load&#8217; the external pages referenced (latin.txt, latin2.txt and latin3.txt) into the same div element with the id of &#8216;text&#8217;. Here&#8217;s the HTML:</p>
<pre class="[brush:html]">
<html>
<head>
<script src="jquery.js" type="text/javascript"></script>
</head>
<body>
<div id="text">This text will be replaced when you click the hyperlinks below</div>

<a href="#" id="link1">Link One</a>
<a href="#" id="link2">Link Two</a>
<a href="#" id="link3">Link Three</a>

</body>
</html>
</pre>
<h3>Explaining The Code</h3>
<p>JQuery is pretty easy to learn once you get the hang of how the functions flow. Here&#8217;s some tidbits about this simple AJAX call:</p>
<dl>
<dt>$(document).ready(function(){</dt>
<dd>JQuery uses the $(document).ready(function() { to ensure that the document is fully loaded and ready to provide you with the ability to execute your code</dd>
<dt>$(&#8220;#link1&#8243;).click(function(){</dt>
<dd>We are stating here that the hyperlink with the #id of link1 should perform a function when it is clicked. So, basically, if you read it like a sentence it states &#8220;when someone clicks on the #link1 do the following&#8221;.</dd>
<dt>$(&#8216;#text&#8217;).load(&#8216;latin.txt&#8217;);</dt>
<dd>The function we want to perform is to insert content into a specific div element in our page. The first part, $(&#8216;#text&#8217;) identifies the element by using it&#8217;s id tag #text, the id of our target div. The second part, .load(&#8216;latin.txt&#8217;);,  tells what content to load into that location. So, reading it like a sentence it says: &#8220;find the div with the id of &#8216;text&#8217; and load this file into that location&#8221;.</dd>
</dl>
<p>I&#8217;ve repeated the process three times in order to identify the 3 different links. The hyperlinks can be placed anywhere on your page and point to your target div. The content you summon can be a wide variety of formats including txt, html, images, etc..</p>
<p>For our external files they reside in my public folder and contain the standard Lorem Ipsum text for this demo. Here is the &#8216;live&#8217; example of how this would look when arriving at your page. </p>
<p>
<a href="#" id="link1">Link One</a> | <a href="#" id="link2">Link Two</a> | <a href="#" id="link3">Link Three</a>
</p>
<div id="text" style="width: 500px; padding: 10px; border: 1px #ccc solid;">This text will be replaced when you click the hyperlinks below</div>
<p>Clicking on the links will summon the different content without having to refresh the page. This saves on load time and at the same time allows you to designate a specific area for as much content as you&#8217;d like to cycle through instead of having a new page for each one.</p>
<h3>Live Demo</h3>
<p>To see this work <a href="http://www.simcomedia.com/simple-ajax.html" target="_blank">Click Here</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/using-jquerys-ajax-functions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recent Ajax Projects</title>
		<link>http://www.simcomedia.com/recent-ajax-projects</link>
		<comments>http://www.simcomedia.com/recent-ajax-projects#comments</comments>
		<pubDate>Sat, 12 Dec 2009 19:46:59 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=645</guid>
		<description><![CDATA[Two recent projects involved extensive use of Ajax for displaying content. One of the great features about using Ajax is the ability to pull in external pages that can be pre-formatted with any time of content into the containing div using a common menu. Here are examples of how we&#8217;ve deployed Ajax in different ways [...]]]></description>
			<content:encoded><![CDATA[<p>Two recent projects involved extensive use of Ajax for displaying content. One of the great features about using Ajax is the ability to pull in external pages that can be pre-formatted with any time of content into the containing div using a common menu. Here are examples of how we&#8217;ve deployed Ajax in different ways to assist with the navigation of client websites:<span id="more-645"></span></p>
<h3>Example #1 &#8211; Using Ajax in the Main Menu</h3>
<p>When we say &#8216;main menu&#8217; we are referring to the main method of navigation for the website. This is usually a horizontal or vertical menu (in this case a vertical unordered list styled with CSS) that is present on every page of the site. This image below illustrates how the site was laid out to accommodate the display of the external content into the container div (click to enlarge):</p>
<p style="text-align: center;"> </p>
<p><br class="spacer_" /></p>
<div id="attachment_647" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2009/12/myers-ajax.jpg"><img class="size-medium wp-image-647" title="Ajax menu by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2009/12/myers-ajax-300x212.jpg" alt="Ajax menu by SimcoMedia" width="300" height="212" /></a><p class="wp-caption-text">Ajax menu by SimcoMedia</p></div>
<p><br class="spacer_" /></p>
<h3>Example #2 &#8211; Using Ajax in a Sub-menu</h3>
<p>In this example the site has a main menu horizontally to provide navigation to all the various sections of the site. Within those sections are sub-menus that allow the related content to be displayed via Ajax into a container div located to the right of the sub-menu. This is extremely helpful in keeping the visitor &#8216;on topic&#8217; while reviewing your site content. The image below illustrates the layout (click to enlarge):</p>
<p><br class="spacer_" /></p>
<div id="attachment_648" class="wp-caption aligncenter" style="width: 310px"><a rel="fancybox" href="http://www.simcomedia.com/wp-content/uploads/2009/12/svps-ajax.jpg"><img class="size-medium wp-image-648" title="Ajax menu by SimcoMedia" src="http://www.simcomedia.com/wp-content/uploads/2009/12/svps-ajax-300x212.jpg" alt="Ajax menu by SimcoMedia" width="300" height="212" /></a><p class="wp-caption-text">Ajax menu by SimcoMedia</p></div>
<p><br class="spacer_" /></p>
<p>Ajax can be used in a variety of ways to improve the speed and ease of navigation for your website. Overuse of Ajax can be a site killer. For more information on how Ajax could be integrated into your website please <a href="http://www.simcomedia.com/contact">contact us</a>.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/recent-ajax-projects/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>80+ Ajax Resources</title>
		<link>http://www.simcomedia.com/ajax-resources</link>
		<comments>http://www.simcomedia.com/ajax-resources#comments</comments>
		<pubDate>Sat, 27 Dec 2008 05:54:36 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[ajax scripts]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=1</guid>
		<description><![CDATA[A list of Ajax scripts and ideas from around the web. AJAX Auto Completers 1. AJAX AutoSuggest: An AJAX auto-complete text field 2. AJAX Autocompleter / script.aculo.us library 3. Another AJAX AutoCompleter 4. Ajax autosuggest/autocomplete from database 5. Ajax dynamic list AJAX Instant Edit 6. AJAX inline text edit 2.0 7. AJAX &#38; CSS Flickr-like [...]]]></description>
			<content:encoded><![CDATA[<h3>A list of Ajax scripts and ideas from around the web.</h3>
<h3>AJAX Auto Completers</h3>
<p>1. <a href="http://www.brandspankingnew.net/archive/2006/08/ajax_auto-suggest_auto-complete.html" target="_blank">AJAX AutoSuggest</a>: An AJAX auto-complete text field</p>
<p>2. <a href="http://demo.script.aculo.us/ajax/autocompleter_customized" target="_blank">AJAX Autocompleter / script.aculo.us library</a></p>
<p>3. <a href="http://digitarald.de/playground/auto2.html" target="_blank">Another AJAX AutoCompleter</a></p>
<p>4. <a href="http://www.roscripts.com/Ajax_autosuggest_autocomplete_from_database-154.html" target="_blank">Ajax autosuggest/autocomplete from database</a></p>
<p>5. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-dynamic-list" target="_blank">Ajax dynamic list</a></p>
<p><a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-dynamic-list" target="_blank"><span id="more-1"></span></a></p>
<h3>AJAX Instant Edit</h3>
<p>6. <a href="http://www.yvoschaap.com/index.php/weblog/ajax_inline_instant_update_text_20/" target="_blank">AJAX inline text edit 2.0</a></p>
<p>7. <a href="http://dbachrach.com/blog/2007/01/07/create-flickr-like-editing-fields-using-ajax-css/" target="_blank">AJAX &amp; CSS Flickr-like Editing Fields</a></p>
<p>8. <a href="http://www.ideasfreelance.com/lab/instant_edit/" target="_blank">AJAX Instant Edit</a></p>
<h3>AJAX Menus, Tabs</h3>
<p>9. <a href="http://www.smashingmagazine.com/2007/04/18/14-tab-based-inferface-techniques/" target="_blank">14 Tab-Based Interface Techniques</a></p>
<p>10. AJAX Menu Widget</p>
<p>11. <a href="http://demos.mootools.net/Accordion" target="_blank">AJAX Accordion Navigation</a>: mootools demos</p>
<p>12. <a href="http://extjs.com/deploy/ext/docs/" target="_blank">AJAX Dialogs, Menus, Grids, Trees and Views</a></p>
<p>13. <a href="http://www.nodetraveller.com/sandbox/moduleTabs/closeable.php" target="_blank">AJAX Tab Module &#8211; Closeable Implementation</a></p>
<p>14. <a href="http://www.dynamicdrive.com/dynamicindex17/ajaxtabscontent/" target="_blank">Ajax Tabs Content</a></p>
<p>16. <a href="http://www.silverscripting.com/mootabs/" target="_blank">MooTabs &#8211; Tiny tab class for MooTools</a></p>
<p>17. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax_dynamicArticles" target="_blank">Dynamically loaded articles</a></p>
<h3>AJAX Date, Time, Calendars</h3>
<p>18. <a href="http://datetime.toolbocks.com/" target="_blank">AJAX Datetime Toolbocks &#8211; Intuitive Date Input Selection</a></p>
<p>19. <a href="http://www.ribosomatic.com/articulos/10-calendarios-con-php-css-y-javascript/" target="_blank">AJAX Calendars</a></p>
<h3>AJAX Interactive Elements</h3>
<p>20. <a href="http://prototype-window.xilinus.com/" target="_blank">AJAX Floating Windows</a></p>
<p>21. <a href="http://www.masugadesign.com/the-lab/scripts/unobtrusive-ajax-star-rating-bar/" target="_blank">AJAX Star Rating Bar</a></p>
<p>22. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax-poller" target="_blank">Ajax poller</a></p>
<h3>AJAX Developer’s Suite</h3>
<p>23. <a href="http://digitarald.de/project/historymanager/" target="_blank">AJAX HistoryManager, Pagination</a></p>
<p>24. <a href="http://www.jamesdam.com/ajax_login/login.html" target="_blank">AJAX Login System Demo</a></p>
<p>25. <a href="http://www.roscripts.com/Javascript_image_preloader-111.html" target="_blank">AJAX image preloader</a></p>
<p>26. <a href="http://www.1976design.com/blog/archive/2003/11/21/nice-titles/" target="_blank">AJAX Tooltips: Nice Titles revised | Blog | 1976design.com</a></p>
<p>27. <a href="http://www.smashingmagazine.com/2007/06/12/tooltips-scripts-ajax-javascript-css-dhtml/" target="_blank">40+ Tooltips Scripts With AJAX, JavaScript &amp; CSS | Smashing Magazine</a></p>
<p>28. <a href="http://www.mathertel.de/AJAXEngine/S03_AJAXControls/ConnectionsTestPage.aspx" target="_blank">AJAX Web Controls</a></p>
<p>29. <a href="http://code.google.com/p/syntaxhighlighter/" target="_blank">AJAX syntaxhighlighter</a></p>
<p>32. <a href="http://transparent-message.xilinus.com/" target="_blank">Transparent Message</a></p>
<p>33. <a href="http://wildbit.com/demos/modalbox/" target="_blank">ModalBox — An easy way to create popups and wizards</a></p>
<p>35. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=ajax_chained_select" target="_blank">Chained select boxes</a></p>
<p>36. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=fly-to-basket" target="_blank">Fly to basket</a></p>
<p>37. <a href="http://www.mochikit.com/examples/key_events/index.html" target="_blank">AJAX Key Events Signal</a></p>
<p>38. <a href="http://www.arraystudio.com/as-workshop/disable-form-submit-on-enter-keypress.html" target="_blank">Disable form submit on enter keypress</a></p>
<h3>Enhanced AJAX Solutions</h3>
<p>39. <a href="http://www.openrico.org/demos/complex_ajax" target="_blank">AJAX Instant Completion : Rico Framework</a></p>
<p>40. <a href="http://novemberborn.net/javascript/event-cache" target="_blank">Novemberborn: Event Cache</a></p>
<p>41. <a href="http://www.shawnolson.net/a/503/altering-css-class-attributes-with-javascript.html" target="_blank">Altering CSS Class Attributes with JavaScript</a></p>
<p>42. <a href="http://www.shawnolson.net/a/1302/select-some-checkboxes-javascript-function.html" target="_blank">Select Some Checkboxes JavaScript Function</a></p>
<p>43. <a href="http://www.ejschart.com/index.php" target="_blank">AJAX Emprise Charts</a>: 100% Pure JavaScript Charts</p>
<p>44. <a href="http://www.amcharts.com/pie/" target="_blank">amCharts: customizable flash Pie &amp; Donut chart</a></p>
<p>45. <a href="http://www.pjhyett.com/posts/190-the-lightbox-effect-without-lightbox" target="_blank">PJ Hyett : The Lightbox Effect without Lightbox</a></p>
<h3>Ajax Forms</h3>
<p>46. <a href="http://digitarald.de/playground/uplooad.html" target="_blank">AJAX Upload Form</a></p>
<p>47. <a href="http://www.dustindiaz.com/ajax-contact-form/" target="_blank">An AJAX contact form</a></p>
<p>48. <a href="http://www.roscripts.com/AJAX_contact_form-144.html" target="_blank">AJAX contact form</a></p>
<p>49. <a href="http://demos.mootools.net/Ajax.Form" target="_blank">Ajax.Form</a>: mootools demo</p>
<p>50. <a href="http://www.roscripts.com/Ajax_form_validation-152.html" target="_blank">Ajax form validation</a></p>
<p>51. <a href="http://tetlaw.id.au/view/javascript/really-easy-field-validation" target="_blank">Really easy field validation</a></p>
<p>52. <a href="http://www.phil-taylor.com/fvalidate/" target="_blank">AJAX fValidate</a>: a high quality javascript form validation tool</p>
<p>53. <a href="http://www.roscripts.com/Ajax_newsletter_form-146.html" target="_blank">Ajax newsletter form</a></p>
<p>54. <a href="http://www.formassembly.com/wForms/" target="_blank">wForms</a>: A Javascript Extension to Web Forms &#8211; The Form Assembly</p>
<h3>AJAX Grids, Tables</h3>
<p>55. <a href="http://www.smashingmagazine.com/2007/05/30/tables-and-data-grids-with-ajax-dhtml-javascript/" target="_blank">Data Grids with AJAX, DHTML and JavaScript | Smashing Magazine</a></p>
<p>56. <a href="http://extjs.com/playpen/ext-2.0/examples/grid/grid3.html" target="_blank">Grid3 Example</a></p>
<p>57. <a href="http://www.frequency-decoder.com/2006/09/16/unobtrusive-table-sort-script-revisited" target="_blank">AJAX Table Sort Script (revisited)</a></p>
<p>58. <a href="http://www.mochikit.com/examples/ajax_tables/index.html" target="_blank">AJAX Sortable Tables</a>: from Scratch with MochiKit</p>
<p>59. <a href="http://www.millstream.com.au/view/code/tablekit/" target="_blank">AJAX TableKit</a></p>
<h3>AJAX Lightboxes, Galleries, Showcases</h3>
<p>60. <a href="http://www.smashingmagazine.com/2007/05/18/30-best-solutions-for-image-galleries-slideshows-lightboxes/" target="_blank">30 Scripts For Galleries, Slideshows and Lightboxes | Smashing Magazine</a></p>
<p>61. <a href="http://www.nofunc.com/Sexy_Box/" target="_blank">AJAX LightBox, Sexy Box, Thick Box</a></p>
<p>62. <a href="http://www.huddletogether.com/projects/lightbox/" target="_blank">AJAX Lightbox JS</a></p>
<p>63. <a href="http://orangoo.com/labs/GreyBox/" target="_blank">AJAX Unobtrusive Popup &#8211; GreyBox</a></p>
<p>64. <a href="http://smoothgallery.jondesign.net/showcase/gallery/" target="_blank">SmoothGallery: Mootools Mojo for Images | Full gallery</a></p>
<p>65. <a href="http://www.smashingmagazine.com/2006/11/15/ajax-dhtml-and-javascript-libraries/" target="_blank">AJAX Libraries and Frameworks</a></p>
<h3>Visual Effects, Animation</h3>
<p>66. <a href="http://firblitz.com/2007/3/6/re-how-to-create-digg-comment-style-sliding-divs-with-javascript-and-css" target="_blank">How to Create Digg Comment Style Sliding DIVs with Javascript and CSS</a></p>
<p>67. <a href="http://www.harrymaugans.com/2007/03/05/how-to-create-a-collapsible-div-with-javascript-and-css/" target="_blank">How to Create a Collapsible DIV with Javascript and CSS</a></p>
<p>68. <a href="http://www.harrymaugans.com/2007/03/06/how-to-create-an-animated-sliding-collapsible-div-with-javascript-and-css/" target="_blank">How to Create an Animated, Sliding, Collapsible DIV with Javascript and CSS</a></p>
<p>69. <a href="http://demo.script.aculo.us/shop" target="_blank">AJAX Shopcart</a></p>
<p>70. <a href="http://www.dhtmlgoodies.com/index.html?showDownload=true&amp;whichScript=dragable-content" target="_blank">Draggable content</a></p>
<p>71. <a href="http://www.dhtmlgoodies.com/index.html?whichScript=dragable-boxes" target="_blank">Dragable RSS boxes</a></p>
<p>72. <a href="http://www.openrico.org/demos?demo=pull_down" target="_blank">AJAX Pull Down Effect</a>: Rico Framework</p>
<p>73. <a href="http://www.openrico.org/demos?demo=effect_animation" target="_blank">AJAX Animation Effects</a>: Rico Framework</p>
<p>74. <a href="http://wiki.script.aculo.us/scriptaculous/show/CombinationEffects" target="_blank">Combination Effects in scriptaculous wiki</a></p>
<p>75. <a href="http://demos.mootools.net/Fx.Morph" target="_blank">AJAX Motion Transition</a>: Fx.Morph</p>
<h3>Useful Basic JavaScripts</h3>
<p>76. <a href="http://www.codecoffee.com/articles/9tips.html" target="_blank">9 Javascript(s) you better not miss !!</a></p>
<p>77. <a href="http://www.dustindiaz.com/top-ten-javascript/" target="_blank">Top 10 custom JavaScript functions of all time</a></p>
<p>78. <a href="http://hyperdisc.unitec.ac.nz/materials/javascript/top10/breadcrumbs.htm" target="_blank">Hyperdisc Materials: JavaScript: Top 10: Automatic Breadcrumb Trail</a></p>
<p>79. <a href="http://hyperdisc.unitec.ac.nz/materials/javascript/top10/" target="_blank">JavaScript: Top 10 Most Useful JavaScripts</a></p>
<p>80. <a href="http://www.blakems.com/archives/000087.html?_required=first_name%2CFirst+Name%7Clast_name%2CLast+Name%7Cemailer%2CEmail&amp;first_name=asdad&amp;last_name=dasdad&amp;emailer=dasdad" target="_blank">My Favorite Javascripts for Designers: Blakems.com ?</a></p>
<h3>Galleries, Resources</h3>
<p>81. <a href="http://www.miniajax.com/" target="_blank">MiniAjax.com</a>: a showroom of nice looking simple downloadable DHTML and AJAX scripts.</p>
<p>82. <a href="http://www.ajaxrain.com/index.php" target="_blank">Ajax Rain</a>: growing showcase of AJAX-examples.</p>
<p>83. <a href="http://www.maxkiesler.com/index.php/mhub/category/" target="_blank">Max Kiesler &#8211; mHub : Ajax and rails examples &amp; how-to’s</a></p>
<p>84. <a href="http://ajax.solutoire.com/" target="_blank">Ajax Resources</a></p>
<p>85. <a href="http://snippets.dzone.com/" target="_blank">DZone Snippets: Store, sort and share source code, with tag goodness</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/ajax-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
