<?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; ajax scripts</title>
	<atom:link href="http://www.simcomedia.com/tag/ajax-scripts/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcomedia.com</link>
	<description>Custom Web Designs And Ecommerce Specialists</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:02:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.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[UPDATED! More examples provided in the demo 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. [...]]]></description>
			<content:encoded><![CDATA[<h3>UPDATED!</h3>
<p>More examples provided in the demo</p>
<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 class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/jquery-toggle-panel" target="_blank"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/jquery-toggle-panel" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/jquery-toggle-panel/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 class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/ajax-resources" target="_blank"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/ajax-resources" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/ajax-resources/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

