<?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: A cross-browser JavaScript prompt</title>
	<atom:link href="http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/feed/" rel="self" type="application/rss+xml" />
	<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/</link>
	<description>E-Learning and Web Development</description>
	<lastBuildDate>Sat, 27 Apr 2013 02:42:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Roman</title>
		<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/#comment-2208</link>
		<dc:creator>Roman</dc:creator>
		<pubDate>Thu, 10 Mar 2011 20:45:35 +0000</pubDate>
		<guid isPermaLink="false">http://pipwerks.com/journal/2007/08/08/a-cross-browser-javascript-prompt/#comment-2208</guid>
		<description><![CDATA[Hi,

I have created a jQuery function: showModalDialog which works on all major browsers: IE, Chrome, Safari and Firefox.

You can see the entire article on my blog: http://extremedev.blogspot.com/2011/03/windowshowmodaldialog-cross-browser-new.html

I hope this will help people to solve cross browser issues :)]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have created a jQuery function: showModalDialog which works on all major browsers: IE, Chrome, Safari and Firefox.</p>
<p>You can see the entire article on my blog: <a href="http://extremedev.blogspot.com/2011/03/windowshowmodaldialog-cross-browser-new.html" rel="nofollow">http://extremedev.blogspot.com/2011/03/windowshowmodaldialog-cross-browser-new.html</a></p>
<p>I hope this will help people to solve cross browser issues <img src='http://pipwerks.com/journal/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philip</title>
		<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/#comment-1905</link>
		<dc:creator>philip</dc:creator>
		<pubDate>Fri, 23 Jul 2010 07:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://pipwerks.com/journal/2007/08/08/a-cross-browser-javascript-prompt/#comment-1905</guid>
		<description><![CDATA[@adrian Thanks for the tip.  I&#039;m not surprised to hear it&#039;s misbehaving in newer browsers... after all, it&#039;s been three years since I wrote this post, and a ton has happened in the browser world in that time (major updates were introduced with Safari 4, Firefox 3.6, Opera 10.5, and IE 8/9, and as you mention now we have the new kid on the block, Google Chrome). I&#039;ll try to test/update the script if I can find some time.

were you using Chrome proper, or Chrome Frame for IE?]]></description>
		<content:encoded><![CDATA[<p>@adrian Thanks for the tip.  I&#8217;m not surprised to hear it&#8217;s misbehaving in newer browsers&#8230; after all, it&#8217;s been three years since I wrote this post, and a ton has happened in the browser world in that time (major updates were introduced with Safari 4, Firefox 3.6, Opera 10.5, and IE 8/9, and as you mention now we have the new kid on the block, Google Chrome). I&#8217;ll try to test/update the script if I can find some time.</p>
<p>were you using Chrome proper, or Chrome Frame for IE?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/#comment-1904</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Fri, 23 Jul 2010 03:37:19 +0000</pubDate>
		<guid isPermaLink="false">http://pipwerks.com/journal/2007/08/08/a-cross-browser-javascript-prompt/#comment-1904</guid>
		<description><![CDATA[With Chrome v5.0.375.99 your script does not seem to work.  Whether you click OK or CANCEL, formSubmit() is called immediately after the formCancel() call (and yes return false; is in the form handler.

Further, window.showModalDialog is true on Chrome.]]></description>
		<content:encoded><![CDATA[<p>With Chrome v5.0.375.99 your script does not seem to work.  Whether you click OK or CANCEL, formSubmit() is called immediately after the formCancel() call (and yes return false; is in the form handler.</p>
<p>Further, window.showModalDialog is true on Chrome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Spathaky</title>
		<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/#comment-1816</link>
		<dc:creator>Mike Spathaky</dc:creator>
		<pubDate>Mon, 03 May 2010 09:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://pipwerks.com/journal/2007/08/08/a-cross-browser-javascript-prompt/#comment-1816</guid>
		<description><![CDATA[Many thanks for your &quot;prompt&quot; reply. Works a treat!

Mike in England]]></description>
		<content:encoded><![CDATA[<p>Many thanks for your &#8220;prompt&#8221; reply. Works a treat!</p>
<p>Mike in England</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: philip</title>
		<link>http://pipwerks.com/2007/08/08/a-cross-browser-javascript-prompt/#comment-1815</link>
		<dc:creator>philip</dc:creator>
		<pubDate>Mon, 03 May 2010 07:31:32 +0000</pubDate>
		<guid isPermaLink="false">http://pipwerks.com/journal/2007/08/08/a-cross-browser-javascript-prompt/#comment-1815</guid>
		<description><![CDATA[@mike

the trick is to add a &lt;code&gt;.focus()&lt;/code&gt; call in the prompt HTML file.  I&#039;ve updated my example to include &lt;code&gt;.focus()&lt;/code&gt;. haven&#039;t tested it in all browsers, but it works fine in IE6 and FF 3.6.]]></description>
		<content:encoded><![CDATA[<p>@mike</p>
<p>the trick is to add a <code>.focus()</code> call in the prompt HTML file.  I&#8217;ve updated my example to include <code>.focus()</code>. haven&#8217;t tested it in all browsers, but it works fine in IE6 and FF 3.6.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
