<?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 Webdev Playground</title>
	<atom:link href="http://www.webdevplayground.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdevplayground.com</link>
	<description>Playing with Web Applications and Scripts</description>
	<lastBuildDate>Sat, 03 Dec 2011 14:47:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Richard Wentz</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-21945</link>
		<dc:creator>Richard Wentz</dc:creator>
		<pubDate>Sat, 03 Dec 2011 14:47:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-21945</guid>
		<description>Hi Adi!

I was stubling about the web trying to find sample code to make such a fun and simple game and I came across yours!  Thank you! 

I&#039;m wondering how I would go about adding a scoring element including clicks and time.  I&#039;m just trying to get my feet wet with developing, and think that this would be a good way to get some practical learning in.  I know it will have to do with a timer trigger that starts with the first game play click, but I don&#039;t know how to element that.  Scoring would be a simple (Number of clicks * seconds) subtracted from an arbitrary number for each level.  Also, adding a couple of &#039;special features&#039; card tiles would be cool, like a &#039;Next Card Stays Hidden&#039; where the next card you click would stay revealed while you searched for it&#039;s match, or a &#039;next pair deleted&#039; card that would delete the next matched set you clicked on. 

Anyway, if there&#039;s anywhere you can point me, that would be great!

Rich</description>
		<content:encoded><![CDATA[<p>Hi Adi!</p>
<p>I was stubling about the web trying to find sample code to make such a fun and simple game and I came across yours!  Thank you! </p>
<p>I&#8217;m wondering how I would go about adding a scoring element including clicks and time.  I&#8217;m just trying to get my feet wet with developing, and think that this would be a good way to get some practical learning in.  I know it will have to do with a timer trigger that starts with the first game play click, but I don&#8217;t know how to element that.  Scoring would be a simple (Number of clicks * seconds) subtracted from an arbitrary number for each level.  Also, adding a couple of &#8216;special features&#8217; card tiles would be cool, like a &#8216;Next Card Stays Hidden&#8217; where the next card you click would stay revealed while you searched for it&#8217;s match, or a &#8216;next pair deleted&#8217; card that would delete the next matched set you clicked on. </p>
<p>Anyway, if there&#8217;s anywhere you can point me, that would be great!</p>
<p>Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Bram</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-21398</link>
		<dc:creator>Bram</dc:creator>
		<pubDate>Mon, 21 Nov 2011 13:49:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-21398</guid>
		<description>Is it possible to pass the total moves with php?
I would like to develop a game for my website where scores could be posted.

Thx in advance!</description>
		<content:encoded><![CDATA[<p>Is it possible to pass the total moves with php?<br />
I would like to develop a game for my website where scores could be posted.</p>
<p>Thx in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a tic-tac-toe game with jQuery &#8211; Part 1 by dave m</title>
		<link>http://www.webdevplayground.com/2009/04/creating-a-tic-tac-toe-game-with-jquery-part-1/comment-page-1/#comment-17513</link>
		<dc:creator>dave m</dc:creator>
		<pubDate>Sat, 13 Aug 2011 17:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=15#comment-17513</guid>
		<description>Hey, a quick optimization that would let you get rid of the &#039;clear&#039; class in css:

#game_map{
    border: 1px solid #000;
    float: left;
}
// We start by emptying the div so that it will only contain 
// what we put in it ourselves
$(&quot;#game_map&quot;).empty();
var num_of_cols = 3, num_of_rows = 3;
// Then for every column and row, we will...
for(var i=0; i&lt;num_of_cols*num_of_rows;++i)
{
    // create a div to be a cell in the game map, and...
    var cell = $(&quot;&quot;)
            .addClass(&quot;cell&quot;)
            .appendTo(&quot;#game_map&quot;);
    // add the line breaks to handle the rows
    // in a quite cross-browser way
    if ( i % num_of_cols === 0 ){
        cell.css(&#039;clear&#039;, &#039;left&#039;);
    }
}</description>
		<content:encoded><![CDATA[<p>Hey, a quick optimization that would let you get rid of the &#8216;clear&#8217; class in css:</p>
<p>#game_map{<br />
    border: 1px solid #000;<br />
    float: left;<br />
}<br />
// We start by emptying the div so that it will only contain<br />
// what we put in it ourselves<br />
$(&#8220;#game_map&#8221;).empty();<br />
var num_of_cols = 3, num_of_rows = 3;<br />
// Then for every column and row, we will&#8230;<br />
for(var i=0; i&lt;num_of_cols*num_of_rows;++i)<br />
{<br />
    // create a div to be a cell in the game map, and&#8230;<br />
    var cell = $(&quot;&#8221;)<br />
            .addClass(&#8220;cell&#8221;)<br />
            .appendTo(&#8220;#game_map&#8221;);<br />
    // add the line breaks to handle the rows<br />
    // in a quite cross-browser way<br />
    if ( i % num_of_cols === 0 ){<br />
        cell.css(&#8216;clear&#8217;, &#8216;left&#8217;);<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a tic-tac-toe game with jQuery &#8211; Part 1 by CLPK23-180 review</title>
		<link>http://www.webdevplayground.com/2009/04/creating-a-tic-tac-toe-game-with-jquery-part-1/comment-page-1/#comment-17410</link>
		<dc:creator>CLPK23-180 review</dc:creator>
		<pubDate>Thu, 11 Aug 2011 22:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=15#comment-17410</guid>
		<description>is there any video to understand this</description>
		<content:encoded><![CDATA[<p>is there any video to understand this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Adi Gabai</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-16730</link>
		<dc:creator>Adi Gabai</dc:creator>
		<pubDate>Wed, 20 Jul 2011 16:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-16730</guid>
		<description>Hi Thorsten,

Please take in mind that the idea behind this game / post was more educational and not something polished for production use.

While this is probably not relevant for you anymore I will still work on a solution to this problem since it might effect others. 
And handling timing issues can be tough. I hope to have something posted about it soon.

If you solved it by and can share the solution I&#039;ll be happy to hear from you :)

Best Regards,
Adi</description>
		<content:encoded><![CDATA[<p>Hi Thorsten,</p>
<p>Please take in mind that the idea behind this game / post was more educational and not something polished for production use.</p>
<p>While this is probably not relevant for you anymore I will still work on a solution to this problem since it might effect others.<br />
And handling timing issues can be tough. I hope to have something posted about it soon.</p>
<p>If you solved it by and can share the solution I&#8217;ll be happy to hear from you <img src='http://www.webdevplayground.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Best Regards,<br />
Adi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Adi Gabai</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-16729</link>
		<dc:creator>Adi Gabai</dc:creator>
		<pubDate>Wed, 20 Jul 2011 16:35:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-16729</guid>
		<description>Hi Scott, 

Sorry it took so long to reply, yes I am working on a new version but it won&#039;t come out any time soon I&#039;m afraid

Best Regards,
Adi</description>
		<content:encoded><![CDATA[<p>Hi Scott, </p>
<p>Sorry it took so long to reply, yes I am working on a new version but it won&#8217;t come out any time soon I&#8217;m afraid</p>
<p>Best Regards,<br />
Adi</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Scott</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-12473</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 11 May 2011 18:00:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-12473</guid>
		<description>Any chance you have a new version of this coming out any time soon? It&#039;s pretty awesome.</description>
		<content:encoded><![CDATA[<p>Any chance you have a new version of this coming out any time soon? It&#8217;s pretty awesome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Thorsten</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-5865</link>
		<dc:creator>Thorsten</dc:creator>
		<pubDate>Wed, 19 Jan 2011 18:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-5865</guid>
		<description>Hi Adi, first thanks for that great game! I love it so much that I&#039;ve built it into a customers&#039; website (http://tinyurl.com/5w86cgh). 

Well and today when the website went &quot;live&quot; we recognized a real big problem: if you click the cards in a quick sequence/speed, they all remain visible!! We tested that on Mac and PC, Firefox and IE ... all the same. Well, your own demo also. 

Any ideas? It would be too bad if we have to remove the game as we all like it so much.

Best Regards,
Thorsten</description>
		<content:encoded><![CDATA[<p>Hi Adi, first thanks for that great game! I love it so much that I&#8217;ve built it into a customers&#8217; website (<a href="http://tinyurl.com/5w86cgh" rel="nofollow">http://tinyurl.com/5w86cgh</a>). </p>
<p>Well and today when the website went &#8220;live&#8221; we recognized a real big problem: if you click the cards in a quick sequence/speed, they all remain visible!! We tested that on Mac and PC, Firefox and IE &#8230; all the same. Well, your own demo also. </p>
<p>Any ideas? It would be too bad if we have to remove the game as we all like it so much.</p>
<p>Best Regards,<br />
Thorsten</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Kristie</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-3632</link>
		<dc:creator>Kristie</dc:creator>
		<pubDate>Wed, 17 Nov 2010 05:11:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-3632</guid>
		<description>I have down loaded the file. How do I place it in my Wordpress/Builder Site? I plan to revise all the images.Are there any steps I need to take to make it work on my site?</description>
		<content:encoded><![CDATA[<p>I have down loaded the file. How do I place it in my WordPress/Builder Site? I plan to revise all the images.Are there any steps I need to take to make it work on my site?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A Basic Memory Game with jQuery and PHP by Adi Gabai</title>
		<link>http://www.webdevplayground.com/2009/09/a-basic-memory-game-with-jquery-and-php/comment-page-1/#comment-1479</link>
		<dc:creator>Adi Gabai</dc:creator>
		<pubDate>Tue, 03 Aug 2010 11:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.webdevplayground.com/?p=90#comment-1479</guid>
		<description>Hi blady,

I’m glad you like it, there are more coming soon… (as soon as I&#039;ll have some time to arrange them)

You may use any script on this site without any terms, though a link back here would be most appreciated.  

Best Regards,
Adi</description>
		<content:encoded><![CDATA[<p>Hi blady,</p>
<p>I’m glad you like it, there are more coming soon… (as soon as I&#8217;ll have some time to arrange them)</p>
<p>You may use any script on this site without any terms, though a link back here would be most appreciated.  </p>
<p>Best Regards,<br />
Adi</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
