<?xml version="1.0" encoding="utf-8"?>
		<feed xmlns="http://www.w3.org/2005/Atom">
		  <title type="text">SkillShare Forum - CSS Beauty - javascript ?</title>
		  <updated>2013-05-26T04:54:42-04:00</updated>
		  <id>http://cssbeauty.com/skillshare/</id>
		  <link rel="alternate" type="text/html" hreflang="en" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=1283&amp;Focus=7988"/>
		  <link rel="self" type="application/atom+xml" href="http://cssbeauty.com/skillshare/discussion/?DiscussionID=1283&amp;Focus=7988&amp;Feed=Atom"/>
		  <generator uri="http://getvanilla.com/" version="1.1.9">
			 Lussumo Vanilla
		  </generator>
		  <entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7981#Comment_7981" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7981#Comment_7981</id>
		<published>2006-10-26T18:39:22-04:00</published>
		<updated>2006-10-26T21:13:14-04:00</updated>
		<author>
			<name>kmg</name>
			<uri>http://cssbeauty.com/skillshare/account/1407/</uri>
		</author>
		<summary type="text" xml:lang="en">
			nevermind
		</summary>
		<content type="html">
			<![CDATA[nevermind]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7983#Comment_7983" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7983#Comment_7983</id>
		<published>2006-10-26T19:01:54-04:00</published>
		<updated>2013-05-26T04:54:42-04:00</updated>
		<author>
			<name>JohnRiv</name>
			<uri>http://cssbeauty.com/skillshare/account/5/</uri>
		</author>
		<summary type="text" xml:lang="en">
			A test page would be useful in this situation so we can see what you're trying to do exactly. If by &quot;pop up form&quot; you mean a popup window with a form in it, then you're probably going to ...
		</summary>
		<content type="html">
			<![CDATA[A test page would be useful in this situation so we can see what you're trying to do exactly. If by "pop up form" you mean a popup window with a form in it, then you're probably going to want to look into window.opener, not document.referrer.]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7984#Comment_7984" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7984#Comment_7984</id>
		<published>2006-10-26T19:22:31-04:00</published>
		<updated>2006-10-26T21:13:59-04:00</updated>
		<author>
			<name>kmg</name>
			<uri>http://cssbeauty.com/skillshare/account/1407/</uri>
		</author>
		<summary type="text" xml:lang="en">
			ok
		</summary>
		<content type="html">
			<![CDATA[ok]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7986#Comment_7986" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7986#Comment_7986</id>
		<published>2006-10-26T20:25:12-04:00</published>
		<updated>2006-10-26T20:25:45-04:00</updated>
		<author>
			<name>nifkin</name>
			<uri>http://cssbeauty.com/skillshare/account/3/</uri>
		</author>
		<summary type="text" xml:lang="en">
			also: you'll need to take that filthy colon out of the ID (and preferably NAME too) attribute(s) if you want any kind of scripting to work.
		</summary>
		<content type="html">
			<![CDATA[also: you'll need to take that filthy colon out of the ID (and preferably NAME too) attribute(s) if you want any kind of scripting to work.]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7987#Comment_7987" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7987#Comment_7987</id>
		<published>2006-10-26T21:15:15-04:00</published>
		<updated>2006-10-26T21:15:25-04:00</updated>
		<author>
			<name>JohnRiv</name>
			<uri>http://cssbeauty.com/skillshare/account/5/</uri>
		</author>
		<summary type="text" xml:lang="en">
			First off, change the id of the textarea to &quot;message&quot; so it matches the name and doesn't conflict with the ID of the form. Then apply this script:

if(window.opener) ...
		</summary>
		<content type="html">
			<![CDATA[First off, change the id of the textarea to "message" so it matches the name and doesn't conflict with the ID of the form. Then apply this script:<br /><br /><pre ><code >if(window.opener) {<br />	document.forms[0].message.value = window.opener.document.location;<br />}</code></pre>]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7988#Comment_7988" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7988#Comment_7988</id>
		<published>2006-10-26T21:34:12-04:00</published>
		<updated>2006-10-26T22:11:37-04:00</updated>
		<author>
			<name>kmg</name>
			<uri>http://cssbeauty.com/skillshare/account/1407/</uri>
		</author>
		<summary type="text" xml:lang="en">
			thanks for your reply JohnRiv - i thought i understood this script but cant get it to work
		</summary>
		<content type="html">
			<![CDATA[thanks for your reply JohnRiv - i thought i understood this script but cant get it to work]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7994#Comment_7994" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7994#Comment_7994</id>
		<published>2006-10-27T06:00:37-04:00</published>
		<updated>2013-05-26T04:54:42-04:00</updated>
		<author>
			<name>JohnRiv</name>
			<uri>http://cssbeauty.com/skillshare/account/5/</uri>
		</author>
		<summary type="text" xml:lang="en">
			setup the script to run once the popup is finished loading and it should populate the textarea (with both name &amp; id equal to &quot;message&quot;) with the URL of the page that opened the popup
		</summary>
		<content type="html">
			<![CDATA[setup the script to run once the popup is finished loading and it should populate the textarea (with both name & id equal to "message") with the URL of the page that opened the popup]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7997#Comment_7997" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7997#Comment_7997</id>
		<published>2006-10-27T06:32:17-04:00</published>
		<updated>2013-05-26T04:54:42-04:00</updated>
		<author>
			<name>kmg</name>
			<uri>http://cssbeauty.com/skillshare/account/1407/</uri>
		</author>
		<summary type="text" xml:lang="en">
			thanks you a life saver - John got it working
		</summary>
		<content type="html">
			<![CDATA[thanks you a life saver - John got it working]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=7998#Comment_7998" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=7998#Comment_7998</id>
		<published>2006-10-27T06:33:14-04:00</published>
		<updated>2013-05-26T04:54:42-04:00</updated>
		<author>
			<name>ljromanoff</name>
			<uri>http://cssbeauty.com/skillshare/account/623/</uri>
		</author>
		<summary type="text" xml:lang="en">
			In future please don't edit out the initial post even if the problem is solved.  Some of us like to read this stuff, you know.
		</summary>
		<content type="html">
			<![CDATA[In future please don't edit out the initial post even if the problem is solved.  Some of us like to read this stuff, you know.]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=8000#Comment_8000" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=8000#Comment_8000</id>
		<published>2006-10-27T07:44:56-04:00</published>
		<updated>2006-10-27T07:45:33-04:00</updated>
		<author>
			<name>JohnRiv</name>
			<uri>http://cssbeauty.com/skillshare/account/5/</uri>
		</author>
		<summary type="text" xml:lang="en">
			glad to hear it's working for you now, kmg

ditto to what ljromanoff said... this board is designed to help others, and if one person encounters a problem, it's likely others will as well, so it's ...
		</summary>
		<content type="html">
			<![CDATA[glad to hear it's working for you now, kmg<br /><br />ditto to what ljromanoff said... this board is designed to help others, and if one person encounters a problem, it's likely others will as well, so it's best to leave your posts unedited so others with similar issues can instantly find the solutions they're looking for without having to post about topics that have already been discussed.<br /><br />as for what this thread was about (so others will know), kmg had a popup window with a form and when the popup window loaded, he needed to populate a textarea in the form with the URL of the webpage that opened the popup window]]>
		</content>
	</entry>
	<entry>
		<title>javascript ?</title>
		<link rel="alternate" href="http://cssbeauty.com/skillshare/discussion/1283/?Focus=8032#Comment_8032" type="application/xhtml+xml" hreflang="en"/>
		<id>http://cssbeauty.com/skillshare/discussion/1283/?Focus=8032#Comment_8032</id>
		<published>2006-10-29T01:28:32-04:00</published>
		<updated>2006-10-29T07:02:28-05:00</updated>
		<author>
			<name>paola</name>
			<uri>http://cssbeauty.com/skillshare/account/1849/</uri>
		</author>
		<summary type="text" xml:lang="en">
			Adperform one of the leading media agancies in the internet market today is looking for good sells people and java c++ experimented people.

Go to www.adperform.com and send your full details.
		</summary>
		<content type="html">
			<![CDATA[Adperform one of the leading media agancies in the internet market today is looking for good sells people and java c++ experimented people.<br /><br />Go to www.adperform.com and send your full details.]]>
		</content>
	</entry>
	
		</feed>