<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sentido Web &#187; jquery</title>
	<atom:link href="http://sentidoweb.com/tag/jquery/feed" rel="self" type="application/rss+xml" />
	<link>http://sentidoweb.com</link>
	<description>Desarrollo web, HTML, CSS, Javascript, PHP, MySQL</description>
	<lastBuildDate>Mon, 16 Jan 2012 10:16:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>jQuery Graceful Websocket: plugin jQuery para websockets</title>
		<link>http://sentidoweb.com/2011/04/18/jquery-graceful-websocket-plugin-jquery-para-websockets.php</link>
		<comments>http://sentidoweb.com/2011/04/18/jquery-graceful-websocket-plugin-jquery-para-websockets.php#comments</comments>
		<pubDate>Mon, 18 Apr 2011 07:58:46 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[websockets]]></category>

		<guid isPermaLink="false">http://sentidoweb.com/?p=2716</guid>
		<description><![CDATA[jQuery Graceful Websocket es un plugin jQuery que nos permite comunicarnos con el servidor usando websockets de HTML5. El problema es que tan solo Chrome permite los websokets (creo que Firefox los tiene desactivados por defecto por temas de seguridad), además se necesita que el servidor los pueda tratar, por lo que este plugin permite [...]]]></description>
			<content:encoded><![CDATA[<p><strong>jQuery Graceful Websocket</strong> es un plugin jQuery que nos permite comunicarnos con el servidor usando websockets de HTML5. El problema es que tan solo Chrome permite los websokets (creo que Firefox los tiene desactivados por defecto por temas de seguridad), además se necesita que el servidor los pueda tratar, por lo que este plugin permite una alternativa mediante Ajax transparente al desarrollador.</p>
<pre><code><pre class="php"><span style="color: #808080; font-style: italic;">// Si el servidor no admite websockets sustituye el ws:// por http://</span>
<span style="color: #000000; font-weight: bold;">var</span> ws = $.gracefulWebSocket<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"ws://127.0.0.1:8080/"</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// Env&Atilde;&shy;a datos al servidor. </span>
<span style="color: #808080; font-style: italic;">// Si el servidor no admite websockets lo env&Atilde;&shy;a mediante POST</span>
ws.send<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">"message to server"</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #808080; font-style: italic;">// Recibe datos del servidor</span>
<span style="color: #808080; font-style: italic;">// Si el servidor no admite websockets hace un polling mediante GET</span>
ws.onmessage = <span style="color: #000000; font-weight: bold;">function</span> <span style="color: #66cc66;">&#40;</span>event<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
   <span style="color: #000000; font-weight: bold;">var</span> messageFromServer = event.data;   
<span style="color: #66cc66;">&#125;</span>;</pre></code></pre>
<p><a href="http://code.google.com/p/jquery-graceful-websocket/">WebSocket plugin for jQuery with graceful degradation</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2011/04/18/jquery-graceful-websocket-plugin-jquery-para-websockets.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cómo hacer un lector de feeds con jQuery Mobile</title>
		<link>http://sentidoweb.com/2010/10/19/como-hacer-un-lector-de-feeds-con-jquery-mobile.php</link>
		<comments>http://sentidoweb.com/2010/10/19/como-hacer-un-lector-de-feeds-con-jquery-mobile.php#comments</comments>
		<pubDate>Tue, 19 Oct 2010 10:50:57 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[feed]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[lector]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://net.tutsplus.com/tutorials/javascript-ajax/how-to-build-an-rss-reader-with-jquery-mobile-2/</guid>
		<description><![CDATA[Completísimo tutorial que nos explica cómo realizar un lector de feeds usando jQuery Mobile (que actualmente está en versión alpha). Cuyas características son las siguientes: Mostrar lista de feeds con sus logos Mostrar el feed cuando se hace click Crear los estilos para los artículos Crear un icono Apple-touch para que el usuario pueda añadir [...]]]></description>
			<content:encoded><![CDATA[<p>Completísimo tutorial que nos explica cómo realizar un lector de feeds usando jQuery Mobile (que actualmente está en versión alpha). Cuyas características son las siguientes:</p>
<ul>
	<li>Mostrar lista de feeds con sus logos</li>
	<li>Mostrar el feed cuando se hace click</li>
	<li>Crear los estilos para los artículos</li>
	<li>Crear un icono Apple-touch para que el usuario pueda añadir la aplicación a su teléfono</li>
	<li>Usar YQL para obtener los datos del feed</li>
	<li>Caché básico</li>
</ul>
<p><a title="How to Build an RSS Reader with jQuery Mobile" href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-build-an-rss-reader-with-jquery-mobile-2/">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/10/19/como-hacer-un-lector-de-feeds-con-jquery-mobile.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manipulate Colors in All Imaginable Combinations with xColor</title>
		<link>http://sentidoweb.com/2010/08/27/manipulate-colors-in-all-imaginable-combinations-with-xcolor.php</link>
		<comments>http://sentidoweb.com/2010/08/27/manipulate-colors-in-all-imaginable-combinations-with-xcolor.php#comments</comments>
		<pubDate>Fri, 27 Aug 2010 07:58:55 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[colores]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://www.webappers.com/2010/08/27/manipulate-colors-in-all-imaginable-combinations-with-xcolor/</guid>
		<description><![CDATA[The xcolor plugin is an easy-to-use jQuery extension to manipulate colors in all imaginable combinations. This plugin implements an extensiv color parser and a featureful set of color-manipulation methods. There is also an animate() extension to smooth CSS colors.Another useful method isReadable() completes the whole, by allowing you to check if a &#8230; Post original]]></description>
			<content:encoded><![CDATA[<p>The xcolor plugin is an easy-to-use jQuery extension to manipulate colors in all imaginable combinations. This plugin implements an extensiv color parser and a featureful set of color-manipulation methods. There is also an animate() extension to smooth CSS colors.Another useful method isReadable() completes the whole, by allowing you to check if a  &#8230;</p>
<p><a href="http://www.webappers.com/2010/08/27/manipulate-colors-in-all-imaginable-combinations-with-xcolor/" title="Manipulate Colors in All Imaginable Combinations with xColor">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/27/manipulate-colors-in-all-imaginable-combinations-with-xcolor.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Picasa jQuery Plugin</title>
		<link>http://sentidoweb.com/2010/08/26/picasa-jquery-plugin.php</link>
		<comments>http://sentidoweb.com/2010/08/26/picasa-jquery-plugin.php#comments</comments>
		<pubDate>Thu, 26 Aug 2010 07:35:00 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[picasa]]></category>

		<guid isPermaLink="false">http://www.dzone.com/links/rss/picasa_jquery_plugin.html</guid>
		<description><![CDATA[A simple jQuery plugin to get albums and images from Picasa without the need for PHP, Ruby, or any other server side language. Makes it easy to create a simple, dynamic, free, client-side-only image gallery. &#8230; Post original]]></description>
			<content:encoded><![CDATA[<p>A simple jQuery plugin to get albums and images from Picasa without the need for PHP, Ruby, or any other server side language. Makes it easy to create a simple, dynamic, free, client-side-only image gallery. &#8230;</p>
<p><a href="http://www.dzone.com/links/rss/picasa_jquery_plugin.html" title="Picasa jQuery Plugin">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/26/picasa-jquery-plugin.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a Twitter AJAX Button with MooTools, jQuery, or Dojo</title>
		<link>http://sentidoweb.com/2010/08/25/create-a-twitter-ajax-button-with-mootools-jquery-or%c2%a0dojo.php</link>
		<comments>http://sentidoweb.com/2010/08/25/create-a-twitter-ajax-button-with-mootools-jquery-or%c2%a0dojo.php#comments</comments>
		<pubDate>Wed, 25 Aug 2010 15:27:26 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[dojo]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[mootools]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://davidwalsh.name/twitter-button</guid>
		<description><![CDATA[There’s nothing like a subtle, slick website widget that effectively uses CSS and JavaScript to enhance the user experience.  Of course widgets like that take many hours to perfect, but it doesn’t take long for that effort to be rewarded with above-average user retention and buzz.  One of the widgets I love is Twitter’s “Follow” [...]]]></description>
			<content:encoded><![CDATA[<p>There’s nothing like a subtle, slick website widget that effectively uses CSS and JavaScript to enhance the user experience.  Of course widgets like that take many hours to perfect, but it doesn’t take long for that effort to be rewarded with above-average user retention and buzz.  One of the widgets I love is Twitter’s “Follow” button.  Let me sho &#8230;</p>
<p><a href="http://davidwalsh.name/twitter-button" title="Create a Twitter AJAX Button with MooTools, jQuery, or Dojo">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/25/create-a-twitter-ajax-button-with-mootools-jquery-or%c2%a0dojo.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FireQuery</title>
		<link>http://sentidoweb.com/2010/08/23/firequery.php</link>
		<comments>http://sentidoweb.com/2010/08/23/firequery.php#comments</comments>
		<pubDate>Mon, 23 Aug 2010 17:06:34 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://firequery.binaryage.com/</guid>
		<description><![CDATA[This is a very cool extension for Firebug (add-on for an add-on?) that expands Firebug’s capabilities with jQuery. For instance, a built in jQueryify button, showing attached event handlers in the Content / DOM tree view, and highlighting all elements in a jQuery collection. I don’t think it’s new but I hadn’t seen it until [...]]]></description>
			<content:encoded><![CDATA[<p>This is a very cool extension for Firebug (add-on for an add-on?) that expands Firebug’s capabilities with jQuery. For instance, a built in jQueryify button, showing attached event handlers in the Content / DOM tree view, and highlighting all elements in a jQuery collection. I don’t think it’s new but I hadn’t seen it until I finally watched Remy S &#8230;</p>
<p><a href="http://firequery.binaryage.com/" title="FireQuery">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/23/firequery.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stylize Radio Button &amp; Checkbox with ezMark jQuery Plugin</title>
		<link>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php</link>
		<comments>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php#comments</comments>
		<pubDate>Thu, 19 Aug 2010 07:06:46 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[checkbox]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[radio]]></category>

		<guid isPermaLink="false">http://www.webappers.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin/</guid>
		<description><![CDATA[ezMark is a jQuery Plugin that allows you to stylize Radio button and Checkbox easily. Its very small (minified version is ~1.5kb) compared to other similar scripts. It has been tested and works on all major browsers (IE 6/7/8, Firefox, Safari, Chrome) and it gracefully degrades.To customize the default checkbox/radiobutton image, simply change the &#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>ezMark is a jQuery Plugin that allows you to stylize Radio button and Checkbox easily. Its very small (minified version is ~1.5kb) compared to other similar scripts. It has been tested and works on all major browsers (IE 6/7/8, Firefox, Safari, Chrome) and it gracefully degrades.To customize the default checkbox/radiobutton image, simply change the &#8230;</p>
<p><a href="http://www.webappers.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin/" title="Stylize Radio Button &amp; Checkbox with ezMark jQuery Plugin">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/19/stylize-radio-button-checkbox-with-ezmark-jquery-plugin.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tip: An Introduction to Sammy.js</title>
		<link>http://sentidoweb.com/2010/08/16/quick-tip-an-introduction-to-sammy-js.php</link>
		<comments>http://sentidoweb.com/2010/08/16/quick-tip-an-introduction-to-sammy-js.php#comments</comments>
		<pubDate>Mon, 16 Aug 2010 07:20:34 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-an-introduction-to-sammy-js/</guid>
		<description><![CDATA[You’ve been seeing it for a while now with Google’s Reader, Gmail, and most recently, on Facebook. Probably, you, too, would like to write RESTful evented JavaScript applications. Well, fellow developers, meet Sammy.js, a tiny JavaScript framework built on top of jQuery. Sammy utilizes the URL hash (#) to allow you to create single page [...]]]></description>
			<content:encoded><![CDATA[<p>You’ve been seeing it for a while now with Google’s Reader, Gmail, and most recently, on Facebook. Probably, you, too, would like to write RESTful evented JavaScript applications. Well, fellow developers, meet Sammy.js, a tiny JavaScript framework built on top of jQuery. Sammy utilizes the URL hash (#) to allow you to create single page AJAX applic &#8230;</p>
<p><a href="http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-an-introduction-to-sammy-js/" title="Quick Tip: An Introduction to Sammy.js">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/16/quick-tip-an-introduction-to-sammy-js.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animated Table Sort with REGEXP Friendly</title>
		<link>http://sentidoweb.com/2010/08/13/animated-table-sort-with-regexp-friendly.php</link>
		<comments>http://sentidoweb.com/2010/08/13/animated-table-sort-with-regexp-friendly.php#comments</comments>
		<pubDate>Fri, 13 Aug 2010 10:38:00 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Quicklinks]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[regexp]]></category>
		<category><![CDATA[tablas]]></category>

		<guid isPermaLink="false">http://www.webappers.com/2010/08/13/animated-table-sort-with-regexp-friendly/</guid>
		<description><![CDATA[Animated Table Sort is a plugin that allows you to animatedly sort a table based on a column’s &#60;td&#62;s, or on the content/value of a child/descendant element within those &#60;td&#62;s. The various &#60;td&#62;s fly to their new homes, giving a nice &#8230; Post original]]></description>
			<content:encoded><![CDATA[<p>Animated Table Sort is a plugin that allows you to animatedly sort a table based on a column’s &lt;td&gt;s, or on the content/value of a child/descendant element within those &lt;td&gt;s. The various &lt;td&gt;s fly to their new homes, giving a nice  &#8230;</p>
<p><a href="http://www.webappers.com/2010/08/13/animated-table-sort-with-regexp-friendly/" title="Animated Table Sort with REGEXP Friendly">Post original</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/08/13/animated-table-sort-with-regexp-friendly.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DLayer: script jQuery que nos ayuda a maquetar diseños</title>
		<link>http://sentidoweb.com/2010/07/16/dlayer-script-jquery-que-nos-ayuda-a-maquetar-disenos.php</link>
		<comments>http://sentidoweb.com/2010/07/16/dlayer-script-jquery-que-nos-ayuda-a-maquetar-disenos.php#comments</comments>
		<pubDate>Fri, 16 Jul 2010 21:12:44 +0000</pubDate>
		<dc:creator>displaynone</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[diseño]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[psd]]></category>

		<guid isPermaLink="false">http://sentidoweb.com/?p=2379</guid>
		<description><![CDATA[Cuando nos pasan un diseño en PNG o PSD y tenemos que transformarlo a CSS y XHTML, una de las partes más tediosas es comprobar que el HTML se ajusta al diseño. Por ello, he creado un script rápido (y un tanto chapuzas) que permite añadir una imagen en el documento HTML y modificar su [...]]]></description>
			<content:encoded><![CDATA[<p>Cuando nos pasan un diseño en PNG o PSD y tenemos que transformarlo a CSS y XHTML, una de las partes más tediosas es comprobar que el HTML se ajusta al diseño. Por ello, he creado un script rápido (y un tanto chapuzas) que permite añadir una imagen en el documento HTML y modificar su <em>top</em> y <em>left</em> así como el <em>opacity</em> para poder comprobar si vamos por buen camino.</p>
<p><img src="http://sentidoweb.com/wp-content/uploads/2010/07/jquery-dlayer.png" alt="" title="jquery-dlayer" width="580" height="291" class="center" /></p>
<p>La imagen la podemos indicar mediante una URL o haciendo drag&#038;drop del fichero (PNG, GIF o JPEG). El D&#038;D sólo funciona en Firefox y sinceramente, el resto del script solo lo he probado en Firefox. Luego solo nos falta cambiar el <em>opacity</em>, el <em>top</em> o el <em>left</em> y hacer pruebas.</p>
<p>Para instalarlo solo hay que añadir el script y añadir <a href="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js">jquery</a> si no está ya incluido.</p>
<p>Espero que os sea útil</p>
<p><a href='http://sentidoweb.com/wp-content/uploads/2010/07/jquery-dlayer.js'>jquery-dlayer</a></p>]]></content:encoded>
			<wfw:commentRss>http://sentidoweb.com/2010/07/16/dlayer-script-jquery-que-nos-ayuda-a-maquetar-disenos.php/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

