JavaScript Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignJavaScript Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old December 23rd, 2001, 11:31 PM
Six-Something Six-Something is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2001
Posts: 1 Six-Something User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Two Javascript pop-up questions.

I don't know much of Javascript, so I have a few questions.

1) I'm working on a little polling script and am failing in trying to get the users choice to respond when the receiving php scrit is called though a pop-up javascript. This is the function I'm using

Code:
<script LANGUAGE="JavaScript">
<!--//

function downloader(sURL){
newwindow=open(sURL,"download","scrollbars=no,toolbar=no,directories=no,menubar=no,resizable=yes,status=no,width=325,height=325");
}

//-->
</script>


and I calling it though <FORM ACTION="javascript:downloader('14000answer.php')" method="post">

But the php script never gets the data on submit. Is there a way I can write the code to pass the data and get a pop-up for the results? I don't like having it take up a whole page.

2) Is it possible to rewrite the function in 1 to accept the width and height though the function call? ie <a href='javascript:popup('some.html', 500, 400)"> or something like that?

Reply With Quote
  #2  
Old December 24th, 2001, 04:58 AM
binky's Avatar
binky binky is offline
Contributing User
Dev Shed Intermediate (1500 - 1999 posts)
 
Join Date: Oct 2001
Location: New Zealand
Posts: 1,774 binky User rank is Sergeant (500 - 2000 Reputation Level)binky User rank is Sergeant (500 - 2000 Reputation Level)binky User rank is Sergeant (500 - 2000 Reputation Level)binky User rank is Sergeant (500 - 2000 Reputation Level)binky User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 1 Day 58 m 15 sec
Reputation Power: 23
If it's something simple then you may be better off opening the window and passing the form data as a query. eg:

function submitData(pollAnswer) {
windowURL = "./myPoll.php?answer=" + escape(pollAnswer)
open(windowURL)
}

Then use PHP to manipulate the query data.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignJavaScript Development > Two Javascript pop-up questions.

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap