<?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 for Mario Lurig</title>
	<atom:link href="http://mariolurig.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://mariolurig.com</link>
	<description>Author. Web Developer. Chocolatier.</description>
	<lastBuildDate>Sat, 18 May 2013 10:50:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Regular Expression Crossword &#8211; Fun Practice with RegEx by anon</title>
		<link>http://mariolurig.com/misc/regular-expression-crossword-fun-practice-with-regex/#comment-1356</link>
		<dc:creator>anon</dc:creator>
		<pubDate>Sat, 18 May 2013 10:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=984#comment-1356</guid>
		<description><![CDATA[Why couldn&#039;t 9 down be &quot;good&quot;? This is way too ambiguous to be solveable.]]></description>
		<content:encoded><![CDATA[<p>Why couldn&#8217;t 9 down be &#8220;good&#8221;? This is way too ambiguous to be solveable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tips for PHP Developers on the PayPal API by Janine</title>
		<link>http://mariolurig.com/coding/tips-php-developers-paypal-api/#comment-1353</link>
		<dc:creator>Janine</dc:creator>
		<pubDate>Mon, 13 May 2013 19:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=100#comment-1353</guid>
		<description><![CDATA[all the time i used to read smaller content that 
as well clear their motive, and that is also happening with 
this article which I am reading here.]]></description>
		<content:encoded><![CDATA[<p>all the time i used to read smaller content that<br />
as well clear their motive, and that is also happening with<br />
this article which I am reading here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Tips for PHP Developers on the PayPal API by vinawap.mobi</title>
		<link>http://mariolurig.com/coding/tips-php-developers-paypal-api/#comment-1351</link>
		<dc:creator>vinawap.mobi</dc:creator>
		<pubDate>Tue, 07 May 2013 03:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=100#comment-1351</guid>
		<description><![CDATA[Thanks for the article, Mario]]></description>
		<content:encoded><![CDATA[<p>Thanks for the article, Mario</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dreamhost VPS Root Access and System Monitoring by Lloyd Irvin</title>
		<link>http://mariolurig.com/coding/dreamhost-vps-root-access-system-monitoring/#comment-1343</link>
		<dc:creator>Lloyd Irvin</dc:creator>
		<pubDate>Wed, 10 Apr 2013 03:54:37 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=179#comment-1343</guid>
		<description><![CDATA[Whoa! This blog looks just like my old one!
It&#039;s on a completely different subject but it has pretty much the same page layout and design. Outstanding choice of colors!]]></description>
		<content:encoded><![CDATA[<p>Whoa! This blog looks just like my old one!<br />
It&#8217;s on a completely different subject but it has pretty much the same page layout and design. Outstanding choice of colors!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automatic Form Detection and Post with jQuery by dt192</title>
		<link>http://mariolurig.com/coding/automatic-form-detection-post-jquery/#comment-1340</link>
		<dc:creator>dt192</dc:creator>
		<pubDate>Fri, 29 Mar 2013 14:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=261#comment-1340</guid>
		<description><![CDATA[Hi thanks for the script it was exactly what i was after and saved me a lot of coding, i did have to alter it to get it to work with the latest jquery as live has been removed also i added a check for Image submit buttons:

$(document).ready(function(){
  // forms 
  $(&#039;form&#039;).each(function(findex){
    // focus first form, first input
    if (findex == 0){
      $(&#039;:input:first&#039;,this).focus();
    }
  });//form.each

  $(document).on(&#039;click&#039;,&#039;input[type=submit],input[type=image]&#039; ,function(){
    $(this).closest(&#039;form&#039;).submit(function(){
      var url = $(this).attr(&#039;action&#039;)+&#039;&amp;ajax=1&#039;;
      // get post values
      var data = {}; // define data object
      $(&#039;:input&#039;,this).each(function(index){
        // checkbox
        if ($(this).attr(&#039;type&#039;) == &#039;checkbox&#039;){
          if ($(this).is(&#039;:checked&#039;)){
            var key = $(this).attr(&#039;name&#039;);
            // if it hasn&#039;t been created yet, define it as an array
            if (typeof data[key] == &#039;undefined&#039;){
              data[key] = [];
            }
            data[key].push($(this).val()); // only happens on CHECKED fields
          }
        // radio button
        }else if($(this).attr(&#039;type&#039;) == &#039;radio&#039;){
          if ($(this).is(&#039;:checked&#039;)){
            var key = $(this).attr(&#039;name&#039;);
            var val = $(this).val();
            data[key] = val;
          }
        // all others
        }else{
          // write non-checkbox fields to data
          var key = $(this).attr(&#039;name&#039;);
          var val = $(this).val();
          data[key] = val;
        }
      });
      // post
      //$.post(url,data, function(html) {
      //    $(&quot;#aJax&quot;).html(html);
      //});
      $.post(url, data).done(function(data){$(&quot;#aJax&quot;).html(data);});
      //alert(&#039;ok&#039;);
      return false;
    }); //form.submit
  });//submit.live
});//document.ready]]></description>
		<content:encoded><![CDATA[<p>Hi thanks for the script it was exactly what i was after and saved me a lot of coding, i did have to alter it to get it to work with the latest jquery as live has been removed also i added a check for Image submit buttons:</p>
<p>$(document).ready(function(){<br />
  // forms<br />
  $(&#8216;form&#8217;).each(function(findex){<br />
    // focus first form, first input<br />
    if (findex == 0){<br />
      $(&#8216;:input:first&#8217;,this).focus();<br />
    }<br />
  });//form.each</p>
<p>  $(document).on(&#8216;click&#8217;,'input[type=submit],input[type=image]&#8216; ,function(){<br />
    $(this).closest(&#8216;form&#8217;).submit(function(){<br />
      var url = $(this).attr(&#8216;action&#8217;)+&#8217;&amp;ajax=1&#8242;;<br />
      // get post values<br />
      var data = {}; // define data object<br />
      $(&#8216;:input&#8217;,this).each(function(index){<br />
        // checkbox<br />
        if ($(this).attr(&#8216;type&#8217;) == &#8216;checkbox&#8217;){<br />
          if ($(this).is(&#8216;:checked&#8217;)){<br />
            var key = $(this).attr(&#8216;name&#8217;);<br />
            // if it hasn&#8217;t been created yet, define it as an array<br />
            if (typeof data[key] == &#8216;undefined&#8217;){<br />
              data[key] = [];<br />
            }<br />
            data[key].push($(this).val()); // only happens on CHECKED fields<br />
          }<br />
        // radio button<br />
        }else if($(this).attr(&#8216;type&#8217;) == &#8216;radio&#8217;){<br />
          if ($(this).is(&#8216;:checked&#8217;)){<br />
            var key = $(this).attr(&#8216;name&#8217;);<br />
            var val = $(this).val();<br />
            data[key] = val;<br />
          }<br />
        // all others<br />
        }else{<br />
          // write non-checkbox fields to data<br />
          var key = $(this).attr(&#8216;name&#8217;);<br />
          var val = $(this).val();<br />
          data[key] = val;<br />
        }<br />
      });<br />
      // post<br />
      //$.post(url,data, function(html) {<br />
      //    $(&#8220;#aJax&#8221;).html(html);<br />
      //});<br />
      $.post(url, data).done(function(data){$(&#8220;#aJax&#8221;).html(data);});<br />
      //alert(&#8216;ok&#8217;);<br />
      return false;<br />
    }); //form.submit<br />
  });//submit.live<br />
});//document.ready</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Mobile 1.3 Swipe to Reveal Panel with Demo by Patrick Kwinten</title>
		<link>http://mariolurig.com/coding/jquery-mobile-1-3-swipe-to-reveal-panel-with-demo/#comment-1339</link>
		<dc:creator>Patrick Kwinten</dc:creator>
		<pubDate>Mon, 25 Mar 2013 10:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=971#comment-1339</guid>
		<description><![CDATA[have you counted the number of divs? more closure divs than opening divs]]></description>
		<content:encoded><![CDATA[<p>have you counted the number of divs? more closure divs than opening divs</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on jQuery Mobile 1.3 Swipe to Reveal Panel with Demo by manuB</title>
		<link>http://mariolurig.com/coding/jquery-mobile-1-3-swipe-to-reveal-panel-with-demo/#comment-1338</link>
		<dc:creator>manuB</dc:creator>
		<pubDate>Mon, 11 Mar 2013 20:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=971#comment-1338</guid>
		<description><![CDATA[just great
thx
manu]]></description>
		<content:encoded><![CDATA[<p>just great<br />
thx<br />
manu</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Regular Expression Crossword &#8211; Fun Practice with RegEx by bazmegakapa</title>
		<link>http://mariolurig.com/misc/regular-expression-crossword-fun-practice-with-regex/#comment-1336</link>
		<dc:creator>bazmegakapa</dc:creator>
		<pubDate>Thu, 07 Mar 2013 21:17:33 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=984#comment-1336</guid>
		<description><![CDATA[The label &quot;Puzzle #1&quot; made me hope there are others if I finish it... ;)]]></description>
		<content:encoded><![CDATA[<p>The label &#8220;Puzzle #1&#8243; made me hope there are others if I finish it&#8230; ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Regular Expression Crossword &#8211; Fun Practice with RegEx by G</title>
		<link>http://mariolurig.com/misc/regular-expression-crossword-fun-practice-with-regex/#comment-1314</link>
		<dc:creator>G</dc:creator>
		<pubDate>Tue, 19 Feb 2013 00:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=984#comment-1314</guid>
		<description><![CDATA[3 across was quite hard. I had to cheat and look at the script and felt better to find this very generic word.  BUT I got the others! :D]]></description>
		<content:encoded><![CDATA[<p>3 across was quite hard. I had to cheat and look at the script and felt better to find this very generic word.  BUT I got the others! :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Regular Expression Crossword &#8211; Fun Practice with RegEx by Lindrian</title>
		<link>http://mariolurig.com/misc/regular-expression-crossword-fun-practice-with-regex/#comment-1313</link>
		<dc:creator>Lindrian</dc:creator>
		<pubDate>Sun, 17 Feb 2013 21:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://mariolurig.com/?p=984#comment-1313</guid>
		<description><![CDATA[Nice stuff :)

It was quite hard considering I did not know all the movie names by heart. Either way, I recommend you check the quiz on my site http://www.regex101.com/quiz/ :)

Keep the cross words coming!]]></description>
		<content:encoded><![CDATA[<p>Nice stuff :)</p>
<p>It was quite hard considering I did not know all the movie names by heart. Either way, I recommend you check the quiz on my site <a href="http://www.regex101.com/quiz/" rel="nofollow">http://www.regex101.com/quiz/</a> :)</p>
<p>Keep the cross words coming!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
