<?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: New Demo &#8211; Impromptu with Ajax</title> <atom:link href="http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/feed/" rel="self" type="application/rss+xml" /><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/</link> <description>practical web design &#38; development</description> <lastBuildDate>Fri, 18 May 2012 18:53:09 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: trent</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9936</link> <dc:creator>trent</dc:creator> <pubDate>Tue, 10 Mar 2009 20:29:37 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9936</guid> <description>Opps, that was a recent change that slipped by that should have been:var jqib = jQuery(msgbox).appendTo(b);Thanks for reporting that!</description> <content:encoded><![CDATA[<p>Opps, that was a recent change that slipped by that should have been:</p><p>var jqib = jQuery(msgbox).appendTo(b);</p><p>Thanks for reporting that!</p> ]]></content:encoded> </item> <item><title>By: Chris C</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9933</link> <dc:creator>Chris C</dc:creator> <pubDate>Tue, 10 Mar 2009 20:13:44 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9933</guid> <description>It&#039;s worth mentioning that if you have changed the default jquery prefix like I have so I can run jquery alongside prototype you need to modifiy jquery-imprompt.js on line 52 -from  :var jqib = $(msgbox).appendTo(b);to :var jqib = $j(msgbox).appendTo(b);Where $j is whatever you prefix is set to.Great script and thanks! :D</description> <content:encoded><![CDATA[<p>It&#8217;s worth mentioning that if you have changed the default jquery prefix like I have so I can run jquery alongside prototype you need to modifiy jquery-imprompt.js on line 52 -</p><p>from  :</p><p>var jqib = $(msgbox).appendTo(b);</p><p>to :</p><p>var jqib = $j(msgbox).appendTo(b);</p><p>Where $j is whatever you prefix is set to.</p><p>Great script and thanks! :D</p> ]]></content:encoded> </item> <item><title>By: Ben K</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9899</link> <dc:creator>Ben K</dc:creator> <pubDate>Fri, 06 Mar 2009 05:37:10 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9899</guid> <description>Thanks again Trent,
For my own hacking purposes, i&#039;ve managed to almost get the scrolling working but i&#039;m stuck on the last bit.
i&#039;ve swaped the following lines around for my own hack of a site:
jqib.css({ position:&quot;absolute&quot; , height: w.height(), width: &quot;100%&quot;, top:  w.scrollTop(), left:  w.scrollLeft(), right: 0, bottom: 0 });
jqif.css({ position: (ie6)? &quot;absolute&quot; : &quot;fixed&quot;, height: w.height(), width: &quot;100%&quot;, top: 0, left:0, right: 0, bottom: 0 });this allows the fader div to be fixed, and the prompt to be absolute.
however i can&#039;t make the fader div to be fixed in ie6,
no matter what i put into the &quot;var ie6scroll = function(){ &quot; it just don&#039;t work =(
when i do jqib.css({ top: w.scrollTop() }); it seems to be offset by the height of the jqib divalso 1 more note: on line 141 is it supposed to be b.unbind or w.unbind?</description> <content:encoded><![CDATA[<p>Thanks again Trent,<br
/> For my own hacking purposes, i&#8217;ve managed to almost get the scrolling working but i&#8217;m stuck on the last bit.<br
/> i&#8217;ve swaped the following lines around for my own hack of a site:<br
/> jqib.css({ position:&#8221;absolute&#8221; , height: w.height(), width: &#8220;100%&#8221;, top:  w.scrollTop(), left:  w.scrollLeft(), right: 0, bottom: 0 });<br
/> jqif.css({ position: (ie6)? &#8220;absolute&#8221; : &#8220;fixed&#8221;, height: w.height(), width: &#8220;100%&#8221;, top: 0, left:0, right: 0, bottom: 0 });</p><p>this allows the fader div to be fixed, and the prompt to be absolute.<br
/> however i can&#8217;t make the fader div to be fixed in ie6,<br
/> no matter what i put into the &#8220;var ie6scroll = function(){ &#8221; it just don&#8217;t work =(<br
/> when i do jqib.css({ top: w.scrollTop() }); it seems to be offset by the height of the jqib div</p><p>also 1 more note: on line 141 is it supposed to be b.unbind or w.unbind?</p> ]]></content:encoded> </item> <item><title>By: trent</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9896</link> <dc:creator>trent</dc:creator> <pubDate>Fri, 06 Mar 2009 01:38:58 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9896</guid> <description>Hi Ben,  I will look at adding your ie6 fix for the next version.  As far as the scrolling issue I&#039;ve seen this before and haven&#039;t thought of a good solution yet, but it&#039;s only once in a blue moon this occurs..As far as the ie7 thing I&#039;ve not had this happen before, however luckily its easy enough to tweek the css, thats why I tried to do as little styling as possible and leave the rest to css.  Thanks for reporting these, I&#039;ll be getting to work :)</description> <content:encoded><![CDATA[<p>Hi Ben,  I will look at adding your ie6 fix for the next version.  As far as the scrolling issue I&#8217;ve seen this before and haven&#8217;t thought of a good solution yet, but it&#8217;s only once in a blue moon this occurs..</p><p>As far as the ie7 thing I&#8217;ve not had this happen before, however luckily its easy enough to tweek the css, thats why I tried to do as little styling as possible and leave the rest to css.  Thanks for reporting these, I&#8217;ll be getting to work :)</p> ]]></content:encoded> </item> <item><title>By: Ben K</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9895</link> <dc:creator>Ben K</dc:creator> <pubDate>Fri, 06 Mar 2009 01:31:42 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9895</guid> <description>also i ran into a problem in ie7, where the z-index would not apply correctly and elements would appear behind my table etc..
I had to apply the z-index style specifically to the &quot;box&quot; style to get it to work
i.e.
div.jqibox{
z-index: 999; /*stupid ie7 */
}</description> <content:encoded><![CDATA[<p>also i ran into a problem in ie7, where the z-index would not apply correctly and elements would appear behind my table etc..<br
/> I had to apply the z-index style specifically to the &#8220;box&#8221; style to get it to work<br
/> i.e.<br
/> div.jqibox{<br
/> z-index: 999; /*stupid ie7 */<br
/> }</p> ]]></content:encoded> </item> <item><title>By: Ben K</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9894</link> <dc:creator>Ben K</dc:creator> <pubDate>Fri, 06 Mar 2009 01:26:50 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9894</guid> <description>two points questions/
1) in ie6 , if scrolled right, the prompt appears off-screen, this can be fixed by replacing
(line 104) add jqib.css({ top: w.scrollTop(), left:w.scrollLeft() });
(line 128) replace left:0  with left:(ie6)? w.scrollLeft():02) a request,if the prompt is large the buttons may appear offscreen. I would like to be able to scroll the screen onto the prompt, while leaving the background fade in position.
I have previously hacked in a &quot;scrolled&quot; flag so that it would leave the dialogue positioned on the screen, while the fader overlay would continue to be &quot;fixed&quot;  i&#039;ve been trying to hack at it in the new version with no luck. any help appreciated!</description> <content:encoded><![CDATA[<p>two points questions/<br
/> 1) in ie6 , if scrolled right, the prompt appears off-screen, this can be fixed by replacing<br
/> (line 104) add jqib.css({ top: w.scrollTop(), left:w.scrollLeft() });<br
/> (line 128) replace left:0  with left:(ie6)? w.scrollLeft():0</p><p>2) a request,if the prompt is large the buttons may appear offscreen. I would like to be able to scroll the screen onto the prompt, while leaving the background fade in position.<br
/> I have previously hacked in a &#8220;scrolled&#8221; flag so that it would leave the dialogue positioned on the screen, while the fader overlay would continue to be &#8220;fixed&#8221;  i&#8217;ve been trying to hack at it in the new version with no luck. any help appreciated!</p> ]]></content:encoded> </item> <item><title>By: apot</title><link>http://trentrichardson.com/2009/03/03/new-demo-impromptu-with-ajax/comment-page-1/#comment-9879</link> <dc:creator>apot</dc:creator> <pubDate>Wed, 04 Mar 2009 15:02:59 +0000</pubDate> <guid
isPermaLink="false">http://trentrichardson.com/?p=268#comment-9879</guid> <description>dirt simple.. you&#039;ve got ajax json down with impromptu and jsonsql makes it even more fun.  for forms impromptu is far ahead of the other solutions</description> <content:encoded><![CDATA[<p>dirt simple.. you&#8217;ve got ajax json down with impromptu and jsonsql makes it even more fun.  for forms impromptu is far ahead of the other solutions</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 3/13 queries in 0.009 seconds using disk: basic
Object Caching 305/305 objects using disk: basic

Served from: trentrichardson.com @ 2012-05-21 03:48:50 -->
