<?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 on: jQuery Impromptu Ideas</title> <atom:link href="http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/feed/" rel="self" type="application/rss+xml" /><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/</link> <description>practical web design &#38; development</description> <lastBuildDate>Tue, 07 Feb 2012 03:15:31 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: trent</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-30125</link> <dc:creator>trent</dc:creator> <pubDate>Wed, 05 Oct 2011 14:11:14 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-30125</guid> <description>Hey Arvin, I would try something like this:&lt;code&gt;
var myprompt = $.prompt(/* ... */);
setTimeout(5000, function(){
if(myprompt){ // if it still exists
$.prompt.close();
});
&lt;/code&gt;Hope that helps</description> <content:encoded><![CDATA[<p>Hey Arvin, I would try something like this:</p><p><code><br
/> var myprompt = $.prompt(/* ... */);<br
/> setTimeout(5000, function(){<br
/> if(myprompt){ // if it still exists<br
/> $.prompt.close();<br
/> });<br
/> </code></p><p>Hope that helps</p> ]]></content:encoded> </item> <item><title>By: Arvin</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-30099</link> <dc:creator>Arvin</dc:creator> <pubDate>Wed, 05 Oct 2011 02:42:02 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-30099</guid> <description>Hey guys, it seems that there is no way to run a code after the timeout reach 0 in impromptu? I want to refresh a page even if a user did not click the Ok button but automatically close after 5 seconds, how can I do that?</description> <content:encoded><![CDATA[<p>Hey guys, it seems that there is no way to run a code after the timeout reach 0 in impromptu? I want to refresh a page even if a user did not click the Ok button but automatically close after 5 seconds, how can I do that?</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-9463</link> <dc:creator>trent</dc:creator> <pubDate>Thu, 11 Dec 2008 13:12:38 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-9463</guid> <description>I think the issue with these was broken html.  IE crashes with broken html where firefox recovers and sometimes figures out what you&#039;re trying to do.</description> <content:encoded><![CDATA[<p>I think the issue with these was broken html.  IE crashes with broken html where firefox recovers and sometimes figures out what you&#8217;re trying to do.</p> ]]></content:encoded> </item> <item><title>By: sachin</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-9461</link> <dc:creator>sachin</dc:creator> <pubDate>Thu, 11 Dec 2008 11:07:13 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-9461</guid> <description>I am also getting the same problem as mariecon and herr rilke.
When i tried to figure out the problem, I came across ie6( which should be set to true when using IE6 or lower) variable in js source file, that gets set to true even though I am using IE7</description> <content:encoded><![CDATA[<p>I am also getting the same problem as mariecon and herr rilke.<br
/> When i tried to figure out the problem, I came across ie6( which should be set to true when using IE6 or lower) variable in js source file, that gets set to true even though I am using IE7</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-9282</link> <dc:creator>trent</dc:creator> <pubDate>Tue, 25 Nov 2008 13:02:10 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-9282</guid> <description>I haven&#039;t tried dynamically resizing the prompt as that has never crossed my mind, but that would be pretty cool if it did that.  Could you not just use the jQuery animate() function for this?</description> <content:encoded><![CDATA[<p>I haven&#8217;t tried dynamically resizing the prompt as that has never crossed my mind, but that would be pretty cool if it did that.  Could you not just use the jQuery animate() function for this?</p> ]]></content:encoded> </item> <item><title>By: Mike C</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-9270</link> <dc:creator>Mike C</dc:creator> <pubDate>Mon, 24 Nov 2008 22:02:05 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-9270</guid> <description>Hey Trent, I gave Impromptu a spin today, great work!  I started to head down the path of using it as a generic ajax small form control but I&#039;ve run into a few issues and have come up with workarounds.  One is the bubbling of key listeners.  I tackled that in the loaded callback with a preventDefault.  The other issue I encountered is dynamically resizing and recentering the form.  I do not have a great solution yet.  Again, in the Loaded function, I&#039;m changing the width and then recentering.  Ideally, I&#039;d like to pass in an override width such as 500 and prompt auto handle it.  Have you done anything like this?
Thanks,
Mike</description> <content:encoded><![CDATA[<p>Hey Trent, I gave Impromptu a spin today, great work!  I started to head down the path of using it as a generic ajax small form control but I&#8217;ve run into a few issues and have come up with workarounds.  One is the bubbling of key listeners.  I tackled that in the loaded callback with a preventDefault.  The other issue I encountered is dynamically resizing and recentering the form.  I do not have a great solution yet.  Again, in the Loaded function, I&#8217;m changing the width and then recentering.  Ideally, I&#8217;d like to pass in an override width such as 500 and prompt auto handle it.  Have you done anything like this?<br
/> Thanks,<br
/> Mike</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-8478</link> <dc:creator>trent</dc:creator> <pubDate>Wed, 29 Oct 2008 12:01:46 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-8478</guid> <description>Is your code publicly available where I could take a look?  If you prefer not to post the link on here the contact link at the top will send only me an email.</description> <content:encoded><![CDATA[<p>Is your code publicly available where I could take a look?  If you prefer not to post the link on here the contact link at the top will send only me an email.</p> ]]></content:encoded> </item> <item><title>By: herr rilke</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-8462</link> <dc:creator>herr rilke</dc:creator> <pubDate>Tue, 28 Oct 2008 22:53:56 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-8462</guid> <description>hello,thanks for sharing this great plugin!but i&#039;m facing the same problem as mariecon de los reyes (no.17)while FF3 and Chrome displaying everything as expected IE6 and IE 7 throw an error @ line 89:jqi.css({ position: &quot;absolute&quot;, top: &quot;100px&quot;, left: &quot;50%&quot;, marginLeft: ((((jqi.css(&quot;paddingLeft&quot;).split(&quot;px&quot;)[0]*1) + jqi.width())/2)*-1) });saying &quot;jqi.css(...) is null or is not an object&quot;.then it shows the message-box at the bottom left corner of the page that is actually frozen.and, trent, to answer the no. 18 question: it doesn&#039;t make any difference if i&#039;m using your css or mine :(do you have an idea what&#039;s going wrong?
i could send you access of my online application so far if that could help.thank you!</description> <content:encoded><![CDATA[<p>hello,</p><p>thanks for sharing this great plugin!</p><p>but i&#8217;m facing the same problem as mariecon de los reyes (no.17)</p><p>while FF3 and Chrome displaying everything as expected IE6 and IE 7 throw an error @ line 89:</p><p>jqi.css({ position: &#8220;absolute&#8221;, top: &#8220;100px&#8221;, left: &#8220;50%&#8221;, marginLeft: ((((jqi.css(&#8220;paddingLeft&#8221;).split(&#8220;px&#8221;)[0]*1) + jqi.width())/2)*-1) });</p><p>saying &#8220;jqi.css(&#8230;) is null or is not an object&#8221;.</p><p>then it shows the message-box at the bottom left corner of the page that is actually frozen.</p><p>and, trent, to answer the no. 18 question: it doesn&#8217;t make any difference if i&#8217;m using your css or mine :(</p><p>do you have an idea what&#8217;s going wrong?<br
/> i could send you access of my online application so far if that could help.</p><p>thank you!</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-8123</link> <dc:creator>trent</dc:creator> <pubDate>Mon, 20 Oct 2008 11:58:58 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-8123</guid> <description>Thanks for letting me know, that one slipped by me.  I will try to release a fix tonight.</description> <content:encoded><![CDATA[<p>Thanks for letting me know, that one slipped by me.  I will try to release a fix tonight.</p> ]]></content:encoded> </item> <item><title>By: Nikhil Kurup</title><link>http://trentrichardson.com/2008/06/23/jquery-impromptu-ideas/comment-page-1/#comment-8101</link> <dc:creator>Nikhil Kurup</dc:creator> <pubDate>Mon, 20 Oct 2008 01:32:36 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=104#comment-8101</guid> <description>I have found a small issue with the latest version of impromptu(1.5) when used in IE6 with other frameworks. At line nos 39 and 107, you have used the &quot;$&quot; shortcut. It has to be replaced with the longhand &quot;jQuery&quot; to ensure proper compatibility.</description> <content:encoded><![CDATA[<p>I have found a small issue with the latest version of impromptu(1.5) when used in IE6 with other frameworks. At line nos 39 and 107, you have used the &#8220;$&#8221; shortcut. It has to be replaced with the longhand &#8220;jQuery&#8221; to ensure proper compatibility.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 2/16 queries in 0.011 seconds using disk: basic
Object Caching 347/348 objects using disk: basic

Served from: trentrichardson.com @ 2012-02-07 10:29:15 -->
