<?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>Comentarios en: Cargar un fichero con jQuery</title>
	<atom:link href="http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/</link>
	<description>/* Programación en la red */</description>
	<lastBuildDate>Thu, 24 May 2012 14:16:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Por: Miguered</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-2/#comment-50825</link>
		<dc:creator>Miguered</dc:creator>
		<pubDate>Tue, 08 Nov 2011 22:35:21 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50825</guid>
		<description>Siiiii!!!! funciona!!!! muchas graciasss!! ;D</description>
		<content:encoded><![CDATA[<p>Siiiii!!!! funciona!!!! muchas graciasss!! ;D</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: miguelmich</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-2/#comment-50823</link>
		<dc:creator>miguelmich</dc:creator>
		<pubDate>Tue, 08 Nov 2011 15:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50823</guid>
		<description>Al parecer la visualización no se vé bien, otra vez:

$(document).ready(function(){
$(“#nav a”).each(function(){
var href = $(this).attr(“href”);
$(this).attr({ href: “#”});

$(this).mouseup( function(){

$(“#show”).fadeOut(600,function(){
   $(this).load(href, function() {$(this).fadeIn(600);});
});


});
});
});</description>
		<content:encoded><![CDATA[<p>Al parecer la visualización no se vé bien, otra vez:</p>
<p>$(document).ready(function(){<br />
$(“#nav a”).each(function(){<br />
var href = $(this).attr(“href”);<br />
$(this).attr({ href: “#”});</p>
<p>$(this).mouseup( function(){</p>
<p>$(“#show”).fadeOut(600,function(){<br />
   $(this).load(href, function() {$(this).fadeIn(600);});<br />
});</p>
<p>});<br />
});<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: miguelmich</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-2/#comment-50822</link>
		<dc:creator>miguelmich</dc:creator>
		<pubDate>Tue, 08 Nov 2011 15:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50822</guid>
		<description>Podrías intentar esto:

&lt;code&gt;
$(document).ready(function(){
$(“#nav a”).each(function(){
var href = $(this).attr(“href”);
$(this).attr({ href: “#”});

$(this).mouseup( function(){

$(“#show”).fadeOut(600,function(){
  $(this).load(href, function() {$(this).fadeIn(600);});
}); 


});
});
});
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Podrías intentar esto:</p>
<p><code><br />
$(document).ready(function(){<br />
$(“#nav a”).each(function(){<br />
var href = $(this).attr(“href”);<br />
$(this).attr({ href: “#”});</p>
<p>$(this).mouseup( function(){</p>
<p>$(“#show”).fadeOut(600,function(){<br />
  $(this).load(href, function() {$(this).fadeIn(600);});<br />
}); </p>
<p>});<br />
});<br />
});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Miguered</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50821</link>
		<dc:creator>Miguered</dc:creator>
		<pubDate>Tue, 08 Nov 2011 15:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50821</guid>
		<description>sip, pero no tenemos un fundido de salida y no encuentro manera de meterlo, ya que la función se ejecuta dentro del $(document).ready(function(){}

de momento he llegado hasta aquí, 

$(document).ready(function(){
   $(&quot;#nav a&quot;).each(function(){
      var href = $(this).attr(&quot;href&quot;);
      $(this).attr({ href: &quot;#&quot;});
      
	  $(this).mouseup(  function(){

$(&quot;#show&quot;).fadeOut(600); &lt;------ lo ejecuta cuando ha cargado el nuevo div.
	  							   $(&quot;#show&quot;).hide().load(href, function() {$(&quot;#show&quot;).fadeIn(600);});
		 
      });
   });
});

Alguna idea de hacerle que primero ejecute el fade out y luego carge el resto???</description>
		<content:encoded><![CDATA[<p>sip, pero no tenemos un fundido de salida y no encuentro manera de meterlo, ya que la función se ejecuta dentro del $(document).ready(function(){}</p>
<p>de momento he llegado hasta aquí, </p>
<p>$(document).ready(function(){<br />
   $(&#8220;#nav a&#8221;).each(function(){<br />
      var href = $(this).attr(&#8220;href&#8221;);<br />
      $(this).attr({ href: &#8220;#&#8221;});</p>
<p>	  $(this).mouseup(  function(){</p>
<p>$(&#8220;#show&#8221;).fadeOut(600); &lt;&#8212;&#8212; lo ejecuta cuando ha cargado el nuevo div.<br />
	  							   $(&quot;#show&quot;).hide().load(href, function() {$(&quot;#show&quot;).fadeIn(600);});</p>
<p>      });<br />
   });<br />
});</p>
<p>Alguna idea de hacerle que primero ejecute el fade out y luego carge el resto???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Fantastic Sams Coupons</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50748</link>
		<dc:creator>Fantastic Sams Coupons</dc:creator>
		<pubDate>Fri, 14 Oct 2011 07:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50748</guid>
		<description>&lt;strong&gt;Great Clips Printable Coupons...&lt;/strong&gt;

[...]the following are a handful of web page links to places which we connect to since we believe there&#039;re truly worth visiting[...]...</description>
		<content:encoded><![CDATA[<p><strong>Great Clips Printable Coupons&#8230;</strong></p>
<p>[...]the following are a handful of web page links to places which we connect to since we believe there&#8217;re truly worth visiting[...]&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Miguel</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50643</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Wed, 10 Aug 2011 21:43:59 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50643</guid>
		<description>No MiguelMich, acabo de probarlo y no funciona...

tengo entendido q $(function() es lo mismo q poner $(document).ready(function() pero de forma abreviada.

gracias por el intento..</description>
		<content:encoded><![CDATA[<p>No MiguelMich, acabo de probarlo y no funciona&#8230;</p>
<p>tengo entendido q $(function() es lo mismo q poner $(document).ready(function() pero de forma abreviada.</p>
<p>gracias por el intento..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: MiguelMich</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50642</link>
		<dc:creator>MiguelMich</dc:creator>
		<pubDate>Wed, 10 Aug 2011 20:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50642</guid>
		<description>Intenta esto

$(document).ready(function(){

  $(“#contenedor”).load(“pagina.html”);

});</description>
		<content:encoded><![CDATA[<p>Intenta esto</p>
<p>$(document).ready(function(){</p>
<p>  $(“#contenedor”).load(“pagina.html”);</p>
<p>});</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: Miguel</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50641</link>
		<dc:creator>Miguel</dc:creator>
		<pubDate>Wed, 10 Aug 2011 17:50:02 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50641</guid>
		<description>Hola, yo tengo el mismo problema que Roberto, es justamente con el evento load(), funciona bien en safary, firefox, internet explorer pero no corre en google chrome.

la manera en la q cargo la pagina es la tradicional

$(function(){
	$(&quot;#contenedor&quot;).load(&quot;pagina.html&quot;);
});
hay alguna otra manera de cargar para q funcione en todos los navegadores por iwal?</description>
		<content:encoded><![CDATA[<p>Hola, yo tengo el mismo problema que Roberto, es justamente con el evento load(), funciona bien en safary, firefox, internet explorer pero no corre en google chrome.</p>
<p>la manera en la q cargo la pagina es la tradicional</p>
<p>$(function(){<br />
	$(&#8220;#contenedor&#8221;).load(&#8220;pagina.html&#8221;);<br />
});<br />
hay alguna otra manera de cargar para q funcione en todos los navegadores por iwal?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: miguelmich</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50332</link>
		<dc:creator>miguelmich</dc:creator>
		<pubDate>Mon, 21 Mar 2011 03:50:21 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50332</guid>
		<description>Y te funciona en algún otro navegador?

si te funciona en algún otro es bueno que coloques el código que estás usando para ver en donde está el posible error</description>
		<content:encoded><![CDATA[<p>Y te funciona en algún otro navegador?</p>
<p>si te funciona en algún otro es bueno que coloques el código que estás usando para ver en donde está el posible error</p>
]]></content:encoded>
	</item>
	<item>
		<title>Por: roberto</title>
		<link>http://lineadecodigo.com/jquery/cargar-un-fichero-con-jquery/comment-page-1/#comment-50331</link>
		<dc:creator>roberto</dc:creator>
		<pubDate>Sun, 20 Mar 2011 19:05:04 +0000</pubDate>
		<guid isPermaLink="false">http://lineadecodigo.com/?p=1495#comment-50331</guid>
		<description>que pena molesarlos con esta pregunta, intento cargar este ejemplo en browsers como google chrome y opera y no me funciona ¿por que pasara esto?</description>
		<content:encoded><![CDATA[<p>que pena molesarlos con esta pregunta, intento cargar este ejemplo en browsers como google chrome y opera y no me funciona ¿por que pasara esto?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Served from: lineadecodigo.com @ 2012-05-24 17:16:55 by W3 Total Cache -->
