<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
	<title>Comments for Timersys</title>
	
	<link>http://blog.timersys.com</link>
	<description>PHP, JQuery y mucho más</description>
	<lastBuildDate>Fri, 23 Jul 2010 14:47:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CommentsForTimersys" /><feedburner:info uri="commentsfortimersys" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Comment on 7 códigos JQuery que todos deberían tener by Guillermo</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/EhotLKsoJRg/</link>
		<dc:creator>Guillermo</dc:creator>
		<pubDate>Fri, 23 Jul 2010 14:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=440#comment-1777</guid>
		<description>Muy buenas tardes

Quería agradecerte tu colaboración de forma constante con la comunidad de internet

La verdad, todo lo que pones es muy útil, gracias por compartirlo

Comenzaré desde 0, ya que tienes mucho material y todo esplendido

Un saludo y gracias gracias!</description>
		<content:encoded><![CDATA[<p>Muy buenas tardes</p>
<p>Quería agradecerte tu colaboración de forma constante con la comunidad de internet</p>
<p>La verdad, todo lo que pones es muy útil, gracias por compartirlo</p>
<p>Comenzaré desde 0, ya que tienes mucho material y todo esplendido</p>
<p>Un saludo y gracias gracias!</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/EhotLKsoJRg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/recursos/7-codigos-jquery-que-todos-deberian-tener/comment-page-1/#comment-1777</feedburner:origLink></item>
	<item>
		<title>Comment on Como seleccionar / deseleccionar todos los checkbox con JQuery by Peddro</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/2svYHhGCk08/</link>
		<dc:creator>Peddro</dc:creator>
		<pubDate>Mon, 19 Jul 2010 17:11:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=191#comment-1757</guid>
		<description>Orale, muy buen post, yo ando haciendo pininos con esto y me a servido de mucho. Gracias!</description>
		<content:encoded><![CDATA[<p>Orale, muy buen post, yo ando haciendo pininos con esto y me a servido de mucho. Gracias!</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/2svYHhGCk08" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/como-seleccionar-deseleccionar-todos-los-checkbox-con-jquery/comment-page-1/#comment-1757</feedburner:origLink></item>
	<item>
		<title>Comment on Como enviar un formulario via AJAX con JQuery by Federico</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/xYOwcB7ojaE/</link>
		<dc:creator>Federico</dc:creator>
		<pubDate>Wed, 14 Jul 2010 18:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=161#comment-1726</guid>
		<description>Muy bueno, pero no lo puedo hacer funcionar si tengo el formulario en un "dialog" ej:


$('#addUsu-caja').dialog({
	autoOpen: false,
	width: 450,
	height: 520,
	resizable: true,
	buttons: {
			"Cerrar": function() { 
				$(this).dialog("close"); 
			}
		}
	
});
$('#addUsu-caja').bind('submit', function() {
            $(this).ajaxSubmit({
                target: '#output'
            });
            return false; // &lt;-- important!
});


Podrias poner un ejemplo relacionado a la mezcla del plugin y el dialog

Gracias, saludos</description>
		<content:encoded><![CDATA[<p>Muy bueno, pero no lo puedo hacer funcionar si tengo el formulario en un &#8220;dialog&#8221; ej:</p>
<p>$(&#8216;#addUsu-caja&#8217;).dialog({<br />
	autoOpen: false,<br />
	width: 450,<br />
	height: 520,<br />
	resizable: true,<br />
	buttons: {<br />
			&#8220;Cerrar&#8221;: function() {<br />
				$(this).dialog(&#8220;close&#8221;);<br />
			}<br />
		}</p>
<p>});<br />
$(&#8216;#addUsu-caja&#8217;).bind(&#8217;submit&#8217;, function() {<br />
            $(this).ajaxSubmit({<br />
                target: &#8216;#output&#8217;<br />
            });<br />
            return false; // &lt;&#8211; important!<br />
});</p>
<p>Podrias poner un ejemplo relacionado a la mezcla del plugin y el dialog</p>
<p>Gracias, saludos</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/xYOwcB7ojaE" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/como-enviar-un-formulario-via-ajax-con-jquery/comment-page-1/#comment-1726</feedburner:origLink></item>
	<item>
		<title>Comment on Selects anidados con AJAX y JQuery by christian</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/sKzaWbj1RTE/</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=342#comment-1687</guid>
		<description>Muy bueno tu post amigo y dime como haría con tres combos anidados: Nivel Educativo, Grado, Seccion</description>
		<content:encoded><![CDATA[<p>Muy bueno tu post amigo y dime como haría con tres combos anidados: Nivel Educativo, Grado, Seccion</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/sKzaWbj1RTE" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/selects-anidados-con-ajax-y-jquery/comment-page-1/#comment-1687</feedburner:origLink></item>
	<item>
		<title>Comment on Acentos y caracteres especiales con Ajax y JQuery II parte by Hinot</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/jF2jfwvdd4g/</link>
		<dc:creator>Hinot</dc:creator>
		<pubDate>Sun, 27 Jun 2010 17:28:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=372#comment-1614</guid>
		<description>Muchas Gracias por este Post, me soluciono semanas de trabajo =).</description>
		<content:encoded><![CDATA[<p>Muchas Gracias por este Post, me soluciono semanas de trabajo =).</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/jF2jfwvdd4g" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/acentos-y-caracteres-especiales-con-ajax-y-jquery-ii-parte/comment-page-1/#comment-1614</feedburner:origLink></item>
	<item>
		<title>Comment on Que necesitan ? by daniela</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/qUdyP2u2mdg/</link>
		<dc:creator>daniela</dc:creator>
		<pubDate>Wed, 23 Jun 2010 20:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=416#comment-1590</guid>
		<description>Me sumo a Nacho, me gustó "formulario dinámico" de hecho estoy queriendo implementarlo pero con selects para el campo de materiales.  Sería genial que los selects se carguen desde una base de datos. Ejemplo un formulario de pedidos, con varias opciones, etc.</description>
		<content:encoded><![CDATA[<p>Me sumo a Nacho, me gustó &#8220;formulario dinámico&#8221; de hecho estoy queriendo implementarlo pero con selects para el campo de materiales.  Sería genial que los selects se carguen desde una base de datos. Ejemplo un formulario de pedidos, con varias opciones, etc.</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/qUdyP2u2mdg" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/recursos/que-necesitan/comment-page-1/#comment-1590</feedburner:origLink></item>
	<item>
		<title>Comment on Esquinas redondeadas y degradados con CSS3 by JcubeiT - Plugin JQuery para hacer cubos con HTML5 | Timersys</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/Unye9knCuPs/</link>
		<dc:creator>JcubeiT - Plugin JQuery para hacer cubos con HTML5 | Timersys</dc:creator>
		<pubDate>Wed, 16 Jun 2010 03:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=422#comment-1538</guid>
		<description>[...] Hoy se me dio por hacer uno bastante gracioso basado en las explicaciones de lanrat acerca de como construir un cubo usando las nuevas propiedades CSS. [...]</description>
		<content:encoded><![CDATA[<p>[...] Hoy se me dio por hacer uno bastante gracioso basado en las explicaciones de lanrat acerca de como construir un cubo usando las nuevas propiedades CSS. [...]</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/Unye9knCuPs" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/tutoriales/esquinas-redondeadas-y-degradados-con-css3/comment-page-1/#comment-1538</feedburner:origLink></item>
	<item>
		<title>Comment on JQuery nightMode Plugin by JcubeiT - Plugin JQuery para hacer cubos con HTML5 | Timersys</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/xCdbw64_wmM/</link>
		<dc:creator>JcubeiT - Plugin JQuery para hacer cubos con HTML5 | Timersys</dc:creator>
		<pubDate>Tue, 15 Jun 2010 22:49:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=387#comment-1536</guid>
		<description>[...] tardes!! Como ven sigo experimentando y haciendo plugins para [...]</description>
		<content:encoded><![CDATA[<p>[...] tardes!! Como ven sigo experimentando y haciendo plugins para [...]</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/xCdbw64_wmM" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/jquery-nightmode-plugin/comment-page-1/#comment-1536</feedburner:origLink></item>
	<item>
		<title>Comment on Acentos y caracteres especiales con Ajax y JQuery II parte by jabbo</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/yTYQMQhdy6A/</link>
		<dc:creator>jabbo</dc:creator>
		<pubDate>Sun, 13 Jun 2010 15:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=372#comment-1518</guid>
		<description>excelente solucion grax!!</description>
		<content:encoded><![CDATA[<p>excelente solucion grax!!</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/yTYQMQhdy6A" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/acentos-y-caracteres-especiales-con-ajax-y-jquery-ii-parte/comment-page-1/#comment-1518</feedburner:origLink></item>
	<item>
		<title>Comment on Como seleccionar / deseleccionar todos los checkbox con JQuery by david</title>
		<link>http://feedproxy.google.com/~r/CommentsForTimersys/~3/zfMLDmd1JL0/</link>
		<dc:creator>david</dc:creator>
		<pubDate>Fri, 11 Jun 2010 21:34:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.timersys.com/?p=191#comment-1507</guid>
		<description>excelente!!! funciona de maravilla
gracias! 8D</description>
		<content:encoded><![CDATA[<p>excelente!!! funciona de maravilla<br />
gracias! 8D</p>
<img src="http://feeds.feedburner.com/~r/CommentsForTimersys/~4/zfMLDmd1JL0" height="1" width="1"/>]]></content:encoded>
	<feedburner:origLink>http://blog.timersys.com/jquery/como-seleccionar-deseleccionar-todos-los-checkbox-con-jquery/comment-page-1/#comment-1507</feedburner:origLink></item>
</channel>
</rss><!-- Dynamic page generated in 1.735 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-07-24 06:15:00 -->
