<?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>insightmedia &#187; JQuery</title>
	<atom:link href="http://insightmed.eu/blog/category/programming-scripting/jscript/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://insightmed.eu/blog</link>
	<description>be the change you want to see in the world</description>
	<lastBuildDate>Fri, 18 May 2012 17:24:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Removing chosen jquery select box replacement</title>
		<link>http://insightmed.eu/blog/programming-scripting/removing-chosen-jquery-select_2012_03.html</link>
		<comments>http://insightmed.eu/blog/programming-scripting/removing-chosen-jquery-select_2012_03.html#comments</comments>
		<pubDate>Wed, 21 Mar 2012 08:29:39 +0000</pubDate>
		<dc:creator>dan.hawk</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Programming / Scripting]]></category>
		<category><![CDATA[remove chosen]]></category>
		<category><![CDATA[unchosen]]></category>

		<guid isPermaLink="false">http://insightmed.eu/blog/?p=212</guid>
		<description><![CDATA[$("select").removeClass("chzn-done").css('display', 'inline').data('chosen', null); $("*[class*=chzn]").remove();]]></description>
			<content:encoded><![CDATA[<p><code>$("select").removeClass("chzn-done").css('display', 'inline').data('chosen', null);<br />
			$("*[class*=chzn]").remove();</code></p>
]]></content:encoded>
			<wfw:commentRss>http://insightmed.eu/blog/programming-scripting/removing-chosen-jquery-select_2012_03.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[rb] Load all forms/links within tabs in the same place with jquery</title>
		<link>http://insightmed.eu/blog/programming-scripting/rb-load-all-forms-within-tabs-in-the-same-place-with-jquery_2010_12.html</link>
		<comments>http://insightmed.eu/blog/programming-scripting/rb-load-all-forms-within-tabs-in-the-same-place-with-jquery_2010_12.html#comments</comments>
		<pubDate>Sun, 05 Dec 2010 11:41:51 +0000</pubDate>
		<dc:creator>dan.hawk</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JScript]]></category>
		<category><![CDATA[Programming / Scripting]]></category>
		<category><![CDATA[jquery load content tabs]]></category>
		<category><![CDATA[jquery tabs]]></category>
		<category><![CDATA[jquery tabs link]]></category>
		<category><![CDATA[jquery tabs load]]></category>
		<category><![CDATA[jquery tabs same tab]]></category>
		<category><![CDATA[jquery tabs same window]]></category>
		<category><![CDATA[load tab same window jquery]]></category>

		<guid isPermaLink="false">http://insightmed.eu/blog/?p=86</guid>
		<description><![CDATA[One of the things that probably most of the people stumbled upon while working with jquery tabs is reloading the content of a form submit/link within the same window/tab window. That&#8217;s pretty simple to achieve with the following code: //this one will work for forms $("#tabs form").live( 'submit' , function() { var self = this; [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that probably most of the people stumbled upon while working with jquery tabs is reloading the content of a form submit/link within the same window/tab window. That&#8217;s pretty simple to achieve with the following code:</p>
<pre class="brush:php">
//this one will work for forms
$("#tabs form").live( 'submit' , function() {
		var self = this;
		$.ajax({
		  type: (!$(this).attr('method') ? 'post' : $(this).attr('method')),
		  url: $(this).attr('action'),
		  data: $(this).serialize(),
		  success: function(data) { $('.ui-tabs-panel:visible').html(data); }
		});
		return false;
	});
//this one will work for links
$("#tabs > div a").live( 'click' , function() {
		var self = this;
		$.ajax({
		  type: 'get',
		  url: $(this).attr('href'),
		  success: function(response) { $('.ui-tabs-panel:visible').html(response); }
		});
		return false;
});
</pre>
<p>While there might be some other implementations with a smoother code, this will do what is supposed to &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://insightmed.eu/blog/programming-scripting/rb-load-all-forms-within-tabs-in-the-same-place-with-jquery_2010_12.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JQuery true background changer</title>
		<link>http://insightmed.eu/blog/uncategorized/jquery-true-background-changer_2010_11.html</link>
		<comments>http://insightmed.eu/blog/uncategorized/jquery-true-background-changer_2010_11.html#comments</comments>
		<pubDate>Sun, 21 Nov 2010 10:58:29 +0000</pubDate>
		<dc:creator>dan.hawk</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[JScript]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[background change effect]]></category>
		<category><![CDATA[background changer]]></category>
		<category><![CDATA[change background jquery]]></category>
		<category><![CDATA[change background jscript]]></category>
		<category><![CDATA[javascript change background]]></category>
		<category><![CDATA[jquery background change]]></category>
		<category><![CDATA[jquery change background]]></category>

		<guid isPermaLink="false">http://insightmed.eu/blog/?p=32</guid>
		<description><![CDATA[While looking for a background changer, i couldn&#8217;t find one that would fit my needs &#8230; that&#8217;s when i realize that it would take less to make one myself &#8230; while it might not work just perfect yet, it was just enough for what i needed &#8230; damn laziness &#8230; Test case: http://www.insightmed.eu/showcase.html JScript plugin: [...]]]></description>
			<content:encoded><![CDATA[<p>While looking for a background changer, i couldn&#8217;t find one that would fit my needs &#8230; that&#8217;s when i realize that it would take less to make one myself &#8230; while it might not work just perfect yet, it was just enough for what i needed &#8230; damn laziness &#8230;</p>
<p><strong>Test case:</strong> <a title="JQuery true background changer" href="http://www.insightmed.eu/showcase.html" target="_blank">http://www.insightmed.eu/showcase.html</a></p>
<p><strong>JScript plugin:</strong> <a href="http://www.insightmed.eu/media/interactive/vendor.jquery.js">http://www.insightmed.eu/media/interactive/vendor.jquery.js</a><a title="JQuery true background changer" href="http://www.insightmed.eu/showcase.html" target="_blank"> </a></p>
<p><strong>Usage:</strong> $(&#8216;selector&#8217;).bgChange({ images: ['image 1', 'image 2', 'image 3', 'etc.'], dir: &#8216;images dir&#8217;, apply_classes: ['apply these classes to the helper used for the effect'] });</p>
]]></content:encoded>
			<wfw:commentRss>http://insightmed.eu/blog/uncategorized/jquery-true-background-changer_2010_11.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

