<?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: How to display pop-up message on mouse clicked position using jQuery</title>
	<atom:link href="http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/feed" rel="self" type="application/rss+xml" />
	<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html</link>
	<description>Useful Tutorials, Scripts , Tips, and Resources for all PHP and Ajax beginners and experts .</description>
	<lastBuildDate>Sun, 14 Mar 2010 01:15:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: pligg.com</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-4942</link>
		<dc:creator>pligg.com</dc:creator>
		<pubDate>Thu, 17 Dec 2009 20:23:41 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-4942</guid>
		<description>&lt;strong&gt;Display pop-up message on mouse clicked position using jQuery...&lt;/strong&gt;

Today, I would like to share the way of handling array of HTML FORM elements using JavaScript and PHP.Well, it&#039;s very easy to get the data from the array of HTML form elements in PHP and using them but in JavaScript it&#039;s a bit tricky to handle the ar...</description>
		<content:encoded><![CDATA[<p><strong>Display pop-up message on mouse clicked position using jQuery&#8230;</strong></p>
<p>Today, I would like to share the way of handling array of HTML FORM elements using JavaScript and PHP.Well, it&#8217;s very easy to get the data from the array of HTML form elements in PHP and using them but in JavaScript it&#8217;s a bit tricky to handle the ar&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aarzman</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-4752</link>
		<dc:creator>aarzman</dc:creator>
		<pubDate>Thu, 29 Oct 2009 13:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-4752</guid>
		<description>Great script!! Is there any jquery control to stop the popup box appear out side of the window? possibly but declaring the window.innerHeight and window.innerWidth?
thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Great script!! Is there any jquery control to stop the popup box appear out side of the window? possibly but declaring the window.innerHeight and window.innerWidth?<br />
thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eyveneena</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-4740</link>
		<dc:creator>Eyveneena</dc:creator>
		<pubDate>Mon, 26 Oct 2009 19:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-4740</guid>
		<description>thank you, thank you, thank you.....:)</description>
		<content:encoded><![CDATA[<p>thank you, thank you, thank you&#8230;..:)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vasim Padhiyar</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-4621</link>
		<dc:creator>Vasim Padhiyar</dc:creator>
		<pubDate>Fri, 25 Sep 2009 08:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-4621</guid>
		<description>your script works.
thank you for sharing</description>
		<content:encoded><![CDATA[<p>your script works.<br />
thank you for sharing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darren Fauth</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3995</link>
		<dc:creator>Darren Fauth</dc:creator>
		<pubDate>Tue, 19 May 2009 19:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3995</guid>
		<description>Nice. I appreciate this tutorial and the good explanation in the comments about how to do this with a link...I&#039;m using a form button. Works great. Thanks!</description>
		<content:encoded><![CDATA[<p>Nice. I appreciate this tutorial and the good explanation in the comments about how to do this with a link&#8230;I&#8217;m using a form button. Works great. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: asdf</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3923</link>
		<dc:creator>asdf</dc:creator>
		<pubDate>Fri, 01 May 2009 17:22:01 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3923</guid>
		<description>$(document).click(function(e)
{
  //getting height and width of the message box
  var height = $(&#039;#popuup_div&#039;).height();
  var width = $(&#039;#popuup_div&#039;).width();
  //calculating offset for displaying popup message
  leftVal=e.pageX-(width/2)+&quot;px&quot;;
  topVal=e.pageY-(height/2)+&quot;px&quot;;
  //show the popup message and hide with fading effect
  $(&#039;#popuup_div&#039;).css({left:leftVal,top:topVal}).show().fadeOut(1500);
});</description>
		<content:encoded><![CDATA[<p>$(document).click(function(e)<br />
{<br />
  //getting height and width of the message box<br />
  var height = $(&#8216;#popuup_div&#8217;).height();<br />
  var width = $(&#8216;#popuup_div&#8217;).width();<br />
  //calculating offset for displaying popup message<br />
  leftVal=e.pageX-(width/2)+&#8221;px&#8221;;<br />
  topVal=e.pageY-(height/2)+&#8221;px&#8221;;<br />
  //show the popup message and hide with fading effect<br />
  $(&#8216;#popuup_div&#8217;).css({left:leftVal,top:topVal}).show().fadeOut(1500);<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zany</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3505</link>
		<dc:creator>zany</dc:creator>
		<pubDate>Tue, 27 Jan 2009 04:17:50 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3505</guid>
		<description>This pop-up is cool ,but to disable it ,can we add some function for eg if we press outside the background or close X  or ecape key the pop-up will be disabled.Can you please help me with this???</description>
		<content:encoded><![CDATA[<p>This pop-up is cool ,but to disable it ,can we add some function for eg if we press outside the background or close X  or ecape key the pop-up will be disabled.Can you please help me with this???</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nagendran</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3281</link>
		<dc:creator>nagendran</dc:creator>
		<pubDate>Sat, 06 Dec 2008 06:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3281</guid>
		<description>thanks for  great  code,  i want  disaplsy or past  some text   at mouse  clicked  position, only one time  ,</description>
		<content:encoded><![CDATA[<p>thanks for  great  code,  i want  disaplsy or past  some text   at mouse  clicked  position, only one time  ,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gokhan</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3278</link>
		<dc:creator>Gokhan</dc:creator>
		<pubDate>Fri, 05 Dec 2008 12:07:02 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3278</guid>
		<description>First thanks for the great code.
I want to use right click instead of left click is it possible?</description>
		<content:encoded><![CDATA[<p>First thanks for the great code.<br />
I want to use right click instead of left click is it possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roshan</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3100</link>
		<dc:creator>Roshan</dc:creator>
		<pubDate>Mon, 10 Nov 2008 16:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3100</guid>
		<description>@mohan - you can do it by having similar similar id of realted links and popups then using jquery to extract the id name when clicked and then displaying the realated popup..one script will be enough if you know the jquery</description>
		<content:encoded><![CDATA[<p>@mohan &#8211; you can do it by having similar similar id of realted links and popups then using jquery to extract the id name when clicked and then displaying the realated popup..one script will be enough if you know the jquery</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohan</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-3094</link>
		<dc:creator>Mohan</dc:creator>
		<pubDate>Mon, 10 Nov 2008 08:23:33 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-3094</guid>
		<description>Hello!

I was suppose to use ur script in one of my tasks, suppose if  i have multiple buttons with different id&#039;s i want the function to be called and a seperate  popup to be shown for each button i click. do i need to use a individual script for all buttons i use??? or i can change the existing script to resolve the issue!....</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I was suppose to use ur script in one of my tasks, suppose if  i have multiple buttons with different id&#8217;s i want the function to be called and a seperate  popup to be shown for each button i click. do i need to use a individual script for all buttons i use??? or i can change the existing script to resolve the issue!&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roshan</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-2893</link>
		<dc:creator>Roshan</dc:creator>
		<pubDate>Wed, 22 Oct 2008 07:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-2893</guid>
		<description>@kamal - yes it is definately possible kama...you have to show the popup in the anchor click event and I think that won&#039;t be tough task</description>
		<content:encoded><![CDATA[<p>@kamal &#8211; yes it is definately possible kama&#8230;you have to show the popup in the anchor click event and I think that won&#8217;t be tough task</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kamal</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-2886</link>
		<dc:creator>kamal</dc:creator>
		<pubDate>Tue, 21 Oct 2008 21:15:52 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-2886</guid>
		<description>Hi, and thanks for sharing the must lovely script in the world.
i have one question?
using your script, remember me some website who let people to download files, so after the page load and try to click over the link download or any place in the website, an advertising popup appear just one time... so it&#039;s possible to do it with this jQuery technique you use.
thanks (sorry 4 my english)</description>
		<content:encoded><![CDATA[<p>Hi, and thanks for sharing the must lovely script in the world.<br />
i have one question?<br />
using your script, remember me some website who let people to download files, so after the page load and try to click over the link download or any place in the website, an advertising popup appear just one time&#8230; so it&#8217;s possible to do it with this jQuery technique you use.<br />
thanks (sorry 4 my english)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anuk</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-2691</link>
		<dc:creator>Anuk</dc:creator>
		<pubDate>Tue, 07 Oct 2008 17:15:50 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-2691</guid>
		<description>it works</description>
		<content:encoded><![CDATA[<p>it works</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jace</title>
		<link>http://roshanbh.com.np/2008/08/pop-up-message-mouse-clicked-position-jquery.html/comment-page-1#comment-2686</link>
		<dc:creator>Jace</dc:creator>
		<pubDate>Tue, 07 Oct 2008 09:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://roshanbh.com.np/?p=203#comment-2686</guid>
		<description>Managed to get this working. 
Firstly make sure toe enclosing single quote is correct: 

  $(&#039;#anchorid&#039;).click(function(e){

Secondly enclose the script in the following:

  $(document).ready(function() {   
		CODE HERE
	});</description>
		<content:encoded><![CDATA[<p>Managed to get this working.<br />
Firstly make sure toe enclosing single quote is correct: </p>
<p>  $(&#8216;#anchorid&#8217;).click(function(e){</p>
<p>Secondly enclose the script in the following:</p>
<p>  $(document).ready(function() {<br />
		CODE HERE<br />
	});</p>
]]></content:encoded>
	</item>
</channel>
</rss>
