<?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/"
> <channel><title>Comments on: Coding a jQuery AJAX site that degrades gracefully</title> <atom:link href="http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/feed/" rel="self" type="application/rss+xml" /><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/</link> <description>Development &#38; Design</description> <lastBuildDate>Sun, 18 Sep 2011 21:52:18 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: toohot</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-19931</link> <dc:creator>toohot</dc:creator> <pubDate>Sun, 18 Sep 2011 21:52:18 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-19931</guid> <description>Hi Guillermo! Good turtorial, all works fine. Could You help with Back button function please</description> <content:encoded><![CDATA[<p>Hi Guillermo! Good turtorial, all works fine. Could You help with Back button function please</p> ]]></content:encoded> </item> <item><title>By: modnarte</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-9759</link> <dc:creator>modnarte</dc:creator> <pubDate>Mon, 30 May 2011 20:04:40 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-9759</guid> <description>Hi, I have resolved the Imageflow issue, somewhat, by adding this to nav.js:
$.noConflict(true);
$(document).ready(function () {
/* $(&quot;p&quot;).text(&quot;The DOM is now loaded and can be manipulated.&quot;);*/
/* This will be called AFTER the Ajax thing has been done */
function initImageflow () {
// Destroy the ImageFlow Instance
instanceOne = null;
// Build a shiny new one
var instanceTwo = new ImageFlow();
// Initiate with your options
instanceTwo.init({	ImageFlowID:&#039;myImageFlow&#039; }); }
});
Works in Safari, Chrome, Opera but Firefox seems to be flickering more than before adding your AJAX!
Any suggestions?</description> <content:encoded><![CDATA[<p>Hi, I have resolved the Imageflow issue, somewhat, by adding this to nav.js:</p><p>$.noConflict(true);<br
/> $(document).ready(function () {<br
/> /* $(&#8220;p&#8221;).text(&#8220;The DOM is now loaded and can be manipulated.&#8221;);*/<br
/> /* This will be called AFTER the Ajax thing has been done */</p><p>function initImageflow () {<br
/> // Destroy the ImageFlow Instance<br
/> instanceOne = null;</p><p>// Build a shiny new one<br
/> var instanceTwo = new ImageFlow();</p><p>// Initiate with your options<br
/> instanceTwo.init({	ImageFlowID:&#8217;myImageFlow&#8217; }); }<br
/> });</p><p>Works in Safari, Chrome, Opera but Firefox seems to be flickering more than before adding your AJAX!</p><p>Any suggestions?</p> ]]></content:encoded> </item> <item><title>By: modnarte</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-9488</link> <dc:creator>modnarte</dc:creator> <pubDate>Tue, 24 May 2011 20:45:12 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-9488</guid> <description>Hi Guillermo,
I have a similar issue like Leon&#039;s. My ImageFlow was working perfectly until I added your AJAX solution. I love the way your solution works on my pages but as a newbie, I need more information on re-attaching Imageflow. Can you be specific about the code I need and where to insert it?
This is the ImageFlow init code:
var domReady = function(handler) { domReadyEvent.add(handler); };
domReadyEvent.init();
domReady(function()
{
var instanceOne = new ImageFlow();
instanceOne.init({ ImageFlowID: &#039;myImageFlow&#039; });
});
Thanks!</description> <content:encoded><![CDATA[<p>Hi Guillermo,<br
/> I have a similar issue like Leon&#8217;s. My ImageFlow was working perfectly until I added your AJAX solution. I love the way your solution works on my pages but as a newbie, I need more information on re-attaching Imageflow. Can you be specific about the code I need and where to insert it?<br
/> This is the ImageFlow init code:</p><p>var domReady = function(handler) { domReadyEvent.add(handler); };<br
/> domReadyEvent.init();</p><p>domReady(function()<br
/> {<br
/> var instanceOne = new ImageFlow();<br
/> instanceOne.init({ ImageFlowID: &#8216;myImageFlow&#8217; });<br
/> });</p><p>Thanks!</p> ]]></content:encoded> </item> <item><title>By: Guillermo</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-4301</link> <dc:creator>Guillermo</dc:creator> <pubDate>Wed, 15 Dec 2010 21:36:29 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-4301</guid> <description>Hi Leon! Sorry for the delay ;)
The function ajaxify_links passes a string to select one (or more) elements using &lt;a href=&quot;http://api.jquery.com/category/selectors/&quot; rel=&quot;nofollow&quot;&gt;Jquery Selector&#039;s format&lt;/a&gt;. In your case you can separate several ids with commas.
I don&#039;t know how you&#039;re using the cycle plugin. I&#039;ll have to guess that you&#039;re attaching the cycle pugin to some elements inside a &quot;$(document).ready&quot; call. When you load a new page with my solution, new content is inserted on the page. Elements inside this content don&#039;t have the cycle event attached to them (because the plugin was called when this elements were not loaded). You can re-attach the cycle plugin each time you refresh the content.
Hope this answer your questions :)
Thanks!</description> <content:encoded><![CDATA[<p>Hi Leon! Sorry for the delay <img
src='http://www.malbecmedia.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>The function ajaxify_links passes a string to select one (or more) elements using <a
href="http://api.jquery.com/category/selectors/" rel="nofollow">Jquery Selector&#8217;s format</a>. In your case you can separate several ids with commas.</p><p>I don&#8217;t know how you&#8217;re using the cycle plugin. I&#8217;ll have to guess that you&#8217;re attaching the cycle pugin to some elements inside a &#8220;$(document).ready&#8221; call. When you load a new page with my solution, new content is inserted on the page. Elements inside this content don&#8217;t have the cycle event attached to them (because the plugin was called when this elements were not loaded). You can re-attach the cycle plugin each time you refresh the content.</p><p>Hope this answer your questions <img
src='http://www.malbecmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>Thanks!</p> ]]></content:encoded> </item> <item><title>By: Leon</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-3164</link> <dc:creator>Leon</dc:creator> <pubDate>Wed, 27 Oct 2010 01:45:25 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-3164</guid> <description>A couple of quick questions if you&#039;re still around.
How can I specify more than one ID in ajaxify_links(&quot;#nav a&quot;)
Why might my jQuery Cycle plugin not work any more for pages loaded via your solution?
Thanx..</description> <content:encoded><![CDATA[<p>A couple of quick questions if you&#8217;re still around.</p><p>How can I specify more than one ID in ajaxify_links(&#8220;#nav a&#8221;)</p><p>Why might my jQuery Cycle plugin not work any more for pages loaded via your solution?</p><p>Thanx..</p> ]]></content:encoded> </item> <item><title>By: Peter</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-1766</link> <dc:creator>Peter</dc:creator> <pubDate>Sun, 01 Aug 2010 10:10:26 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-1766</guid> <description>I am implementing your code to my web, everything work perfect besides Back button. The page url change on back button but content does not update. I was trying to plug in BBQ or history.js but nothing works. Could you help me with this.</description> <content:encoded><![CDATA[<p>I am implementing your code to my web, everything work perfect besides Back button. The page url change on back button but content does not update. I was trying to plug in BBQ or history.js but nothing works. Could you help me with this.</p> ]]></content:encoded> </item> <item><title>By: Brent</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-1491</link> <dc:creator>Brent</dc:creator> <pubDate>Wed, 23 Jun 2010 17:05:34 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-1491</guid> <description>cool, I was seeing some other tutorials but none of them degraded gracefully.  It&#039;d be awesome if you could work in the back button fix using URL hash at some point, if you ever do please email me - brent@mimoymima.com
thanks!
b r e n t</description> <content:encoded><![CDATA[<p>cool, I was seeing some other tutorials but none of them degraded gracefully.  It&#8217;d be awesome if you could work in the back button fix using URL hash at some point, if you ever do please email me &#8211; <a
href="mailto:brent@mimoymima.com">brent@mimoymima.com</a></p><p>thanks!</p><p>b r e n t</p> ]]></content:encoded> </item> <item><title>By: Guillermo</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-895</link> <dc:creator>Guillermo</dc:creator> <pubDate>Tue, 30 Mar 2010 14:38:20 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-895</guid> <description>Thanks Jeremy!
It&#039;s true, back button doesn&#039;t work with this approach. This could be solved appending a hashtag on the url every time that the content changes and then using that hashtag to reload the content again when the user clicks back or forward.
Right now adding that feature is not on the plans, the article was only to show how to load AJAX content in a crawler friendy way, but we&#039;ll let you know if we make any changes :)</description> <content:encoded><![CDATA[<p>Thanks Jeremy!</p><p>It&#8217;s true, back button doesn&#8217;t work with this approach. This could be solved appending a hashtag on the url every time that the content changes and then using that hashtag to reload the content again when the user clicks back or forward.</p><p>Right now adding that feature is not on the plans, the article was only to show how to load AJAX content in a crawler friendy way, but we&#8217;ll let you know if we make any changes <img
src='http://www.malbecmedia.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: Jeremy</title><link>http://www.malbecmedia.com/blog/development/coding-a-ajax-site-that-degrades-gracefully-with-jquery/#comment-891</link> <dc:creator>Jeremy</dc:creator> <pubDate>Mon, 29 Mar 2010 21:51:41 +0000</pubDate> <guid
isPermaLink="false">http://www.malbecmedia.com/?p=675#comment-891</guid> <description>Hi,
This AJAX tool works great, and I love that it&#039;s SEO friendly. Do you have any plans to make the back button work?
Thanks!
Jeremy</description> <content:encoded><![CDATA[<p>Hi,</p><p>This AJAX tool works great, and I love that it&#8217;s SEO friendly. Do you have any plans to make the back button work?</p><p>Thanks!<br
/> Jeremy</p> ]]></content:encoded> </item> </channel> </rss>
