<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: jQuery (mb)Tabset 1.8</title>
	<atom:link href="http://pupunzi.open-lab.com/2009/04/01/mbtabset/feed/" rel="self" type="application/rss+xml" />
	<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/</link>
	<description>mb.ideas.repository</description>
	<lastBuildDate>Mon, 15 Mar 2010 14:47:21 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-2543</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Thu, 11 Mar 2010 10:54:34 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-2543</guid>
		<description>Hi Glen,
Can you be more specific with the javascript error?
can you inspect the code with the Developer Tool of IE8?
That could be  helpful to understand the error type and if it depends by the Ajax or maybe by some HTML code that get broken by the Ajax call...
Bye
Matteo</description>
		<content:encoded><![CDATA[<p>Hi Glen,<br />
Can you be more specific with the javascript error?<br />
can you inspect the code with the Developer Tool of IE8?<br />
That could be  helpful to understand the error type and if it depends by the Ajax or maybe by some HTML code that get broken by the Ajax call&#8230;<br />
Bye<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Glen</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-2540</link>
		<dc:creator>Glen</dc:creator>
		<pubDate>Thu, 11 Mar 2010 06:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-2540</guid>
		<description>Hi Matteo,

Great plugin! It is great to be able to deliver a tab set such as this on my intranet page.

But I am having a problem with Ajax content or I believe it is ajax. And it is on IE8...
Each one of my tabs refers to other pages through ajax but as soon as I go to another tab I get the error:
&quot; &#039;theform.elements.length&#039; is Null or not an object&quot;.
If I ignore the error and go back and forth through the tabs I eventually get an error box stating:

SysFader:iexplorer.exe - App;ication Error
The instruction at &quot;an address&quot; referenced memory at &quot;that address&quot;. The memory could not be &quot;written&quot;.

Funny enough (or not funny) I have tried it using FF and there is no problem. But I need to have it working in I.E..

Would you have any suggestions?

cheers
Glen</description>
		<content:encoded><![CDATA[<p>Hi Matteo,</p>
<p>Great plugin! It is great to be able to deliver a tab set such as this on my intranet page.</p>
<p>But I am having a problem with Ajax content or I believe it is ajax. And it is on IE8&#8230;<br />
Each one of my tabs refers to other pages through ajax but as soon as I go to another tab I get the error:<br />
&#8221; &#8216;theform.elements.length&#8217; is Null or not an object&#8221;.<br />
If I ignore the error and go back and forth through the tabs I eventually get an error box stating:</p>
<p>SysFader:iexplorer.exe &#8211; App;ication Error<br />
The instruction at &#8220;an address&#8221; referenced memory at &#8220;that address&#8221;. The memory could not be &#8220;written&#8221;.</p>
<p>Funny enough (or not funny) I have tried it using FF and there is no problem. But I need to have it working in I.E..</p>
<p>Would you have any suggestions?</p>
<p>cheers<br />
Glen</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-2217</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Sun, 24 Jan 2010 14:30:20 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-2217</guid>
		<description>Hi Tom,
there are two methods to preload contents in your tab:

1.  you have &lt;strong&gt;$.fn.mb_changeContent();&lt;/strong&gt;; this method set to the tab the url and tha DATA you need to load on it, but it doesn&#039;t load the content.
&lt;code&gt;$(&#039;#MyTab&#039;).mb_changeContent(&#039;content_3.html&#039;,&#039;a=1&amp;b=2&#039;);&lt;/code&gt;

2. than&lt;strong&gt; $.fn.mb_drawAjaxContent() &lt;/strong&gt;; this method load the content specified into the tab without showing it; so, once you click on the tab the content is already loaded.
&lt;code&gt;$(&#039;#MyTab&#039;).mb_drawAjaxContent();&lt;/code&gt;

So you can call them sequencially for all your Ajax tabs to obtain your issue:
&lt;code&gt;$(&#039;#MyTab&#039;).mb_changeContent(&#039;content_3.html&#039;,&#039;a=1&amp;b=2&#039;);&lt;/code&gt;
&lt;code&gt;$(&#039;#MyTab&#039;).mb_drawAjaxContent();&lt;/code&gt;

Hope this helps you,
bye
Matteo</description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
there are two methods to preload contents in your tab:</p>
<p>1.  you have <strong>$.fn.mb_changeContent();</strong>; this method set to the tab the url and tha DATA you need to load on it, but it doesn&#8217;t load the content.<br />
<code>$('#MyTab').mb_changeContent('content_3.html','a=1&amp;b=2');</code></p>
<p>2. than<strong> $.fn.mb_drawAjaxContent() </strong>; this method load the content specified into the tab without showing it; so, once you click on the tab the content is already loaded.<br />
<code>$('#MyTab').mb_drawAjaxContent();</code></p>
<p>So you can call them sequencially for all your Ajax tabs to obtain your issue:<br />
<code>$('#MyTab').mb_changeContent('content_3.html','a=1&amp;b=2');</code><br />
<code>$('#MyTab').mb_drawAjaxContent();</code></p>
<p>Hope this helps you,<br />
bye<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Nygen</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-2214</link>
		<dc:creator>Tom Nygen</dc:creator>
		<pubDate>Sun, 24 Jan 2010 14:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-2214</guid>
		<description>Thanks for the great jQuery plugins!
I wonder if there is a way to specify that the tabs are pre-loaded one after another? Pre-loading would help to give users the perception that my application is fast. In the application, users will look at the tabs in an order. While they are looking at the first tab, the following tabs are pre-loaded, so that tab switching is instantly.</description>
		<content:encoded><![CDATA[<p>Thanks for the great jQuery plugins!<br />
I wonder if there is a way to specify that the tabs are pre-loaded one after another? Pre-loading would help to give users the perception that my application is fast. In the application, users will look at the tabs in an order. While they are looking at the first tab, the following tabs are pre-loaded, so that tab switching is instantly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1286</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Thu, 17 Sep 2009 07:22:14 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1286</guid>
		<description>It&#039; worked :D

Thanks Matteo. It works fine now. 
It seems it&#039;s some kind of limitation on webhosting provider side.


Cheers
Rick</description>
		<content:encoded><![CDATA[<p>It&#8217; worked <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Thanks Matteo. It works fine now.<br />
It seems it&#8217;s some kind of limitation on webhosting provider side.</p>
<p>Cheers<br />
Rick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1284</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Wed, 16 Sep 2009 17:58:32 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1284</guid>
		<description>Hi rick,
This could be a server problem, anyway you can change the send method from POST to GET at line 279 of mbMenu.js.
Bye,
Matteo</description>
		<content:encoded><![CDATA[<p>Hi rick,<br />
This could be a server problem, anyway you can change the send method from POST to GET at line 279 of mbMenu.js.<br />
Bye,<br />
Matteo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rick</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1283</link>
		<dc:creator>Rick</dc:creator>
		<pubDate>Wed, 16 Sep 2009 15:51:08 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1283</guid>
		<description>Hi all,

I&#039;ve got the same problem. Ajax content is not loading.

It runs fine when testing on the machine.
Once i upload on the server ajax contents are not loaded.

Using Fiddler got to this:
&gt;405 Method Not Allowed
&gt;Method Not Allowed
&gt;The requested method POST is not allowed for the URL 

Any help?</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>I&#8217;ve got the same problem. Ajax content is not loading.</p>
<p>It runs fine when testing on the machine.<br />
Once i upload on the server ajax contents are not loaded.</p>
<p>Using Fiddler got to this:<br />
&gt;405 Method Not Allowed<br />
&gt;Method Not Allowed<br />
&gt;The requested method POST is not allowed for the URL </p>
<p>Any help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ryan</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1221</link>
		<dc:creator>ryan</dc:creator>
		<pubDate>Fri, 04 Sep 2009 04:08:48 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1221</guid>
		<description>this is ridiculous! good job!</description>
		<content:encoded><![CDATA[<p>this is ridiculous! good job!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SohoInteractive</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1135</link>
		<dc:creator>SohoInteractive</dc:creator>
		<pubDate>Mon, 03 Aug 2009 16:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1135</guid>
		<description>great plugin, works well on all browser.
thank you
great work

F.</description>
		<content:encoded><![CDATA[<p>great plugin, works well on all browser.<br />
thank you<br />
great work</p>
<p>F.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo Bicocchi</title>
		<link>http://pupunzi.open-lab.com/2009/04/01/mbtabset/#comment-1118</link>
		<dc:creator>Matteo Bicocchi</dc:creator>
		<pubDate>Wed, 29 Jul 2009 13:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://pupunzi.wordpress.com/?p=510#comment-1118</guid>
		<description>Great Erik,
happy to make you happier :-)

bye
Matteo</description>
		<content:encoded><![CDATA[<p>Great Erik,<br />
happy to make you happier <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>bye<br />
Matteo</p>
]]></content:encoded>
	</item>
</channel>
</rss>
