popup « variable « Javascript Data Type Q&A

Home
Javascript Data Type Q&A
1.Array
2.Clojure
3.date
4.decimal
5.function
6.global
7.loop
8.math
9.number
10.object
11.Regular Expression
12.scope
13.String
14.Var
15.variable
Javascript Data Type Q&A » variable » popup 

1. how to access a window variable from a popup window?    stackoverflow.com

I already lost some hours trying to figure out how to solve a javascript problem. I have a JS function that opens a popup window:

function openSearchWindow(searchType, targetIdField, targetDescField)
and I set 2 ...

2. Variable sized popup window    stackoverflow.com

I have a mysql/php generated list of checkboxes, all assigned to admins of the site that I'm working on. To change assignments (checkboxes), I've got a popup displaying the list with ...

3. Help with script to populate variables in popup    codingforums.com

Total newbie, I (almost) know just basic HTML. I have my own website and I'm trying to find out how to make a popup window work from clicking on a part link in a parent window table so that my clients can make an inquiry. I have about 300 parts on 10 pages total and would like it to be something ...

5. Variable resizing pop up windows?    codingforums.com

Hi, I have a pop up window which opens displaying data, on some occasions it might be very little information, on others it could be a lot. I currently have a fixed size pop up window so it doesn't really look too good with a large amount of data. I am wondering if it is possible to set the size of ...

6. passing a variable back from a popup    forums.devarticles.com

Hi all, I am sure this is one of those question you lots can answer in a heart beat but i have been chewing it over for a while. I am doing a file upload script which opens in a popup off the main submit form. I have it uploading files fine but what i want is for the pop up ...

7. how to passing value from popup to the parent window as a variable    bytes.com

It's going to be undefined because there simply isn't enough time before you alert it. When you call window.open, it's more or less asynchronous and moves onto the next line (the alert) without waiting for the window to load. You may not notice this as much on faster computers/simple pages. Even if it was synchronous, your code assumes item1 has already ...

8. Passing variables from pop-up window to parent window.    forums.digitalpoint.com

Hello, I made a code to pass variables from pop-up window to parent window. Unfortunately this code is only working on Mozilla FireFox and not Internet Explorer. Can anyone help in this? JavaScript function to pass variables and close pop-up window: Code: function setValues() { var txt = document.getElementById("text").value; var font_size = document.getElementById("font_size").value; var font = document.getElementById("font"); font = font.options[font.selectedIndex].value; var ...

9. Popup window taking variables from its opener    forums.digitalpoint.com

10. transfer variable to popup (a mind bender)    forums.digitalpoint.com

transfer variable to popup (a mind bender) Sorry if this is a bit long-winded but it seems necessary to outline the scenario as I am not really sure of the correct line of solution here. Short version: How to get a specific (variable) variable into a popup? Possibly from an onClick command. Or, have the popup get the value -- from ...

11. Trouble passing variables to a popup window    forums.devshed.com

Hi guys! So I have a little bit of a problem here. I am using PHP to write out a few links onto my webpage for users to redirect to, based on the data that it pulls from my database. These links open in popup windows. The problem I am experiencing is that the variables that are passed to the popup ...

12. Variable Height Pop-Up    forums.devshed.com

14. Passing variables into a pop up window    forums.devshed.com

function poptastic(url,dir) { var width = 445; var height = 400; var left = (screen.width - width)/2; var top = (screen.height - height)/2; var params = 'width='+width+', height='+height; params += ', top='+top+', left='+left; params += ', directories=no'; params += ', location=no'; params += ', menubar=no'; params += ', resizable=no'; params += ', scrollbars=no'; params += ', status=no'; params += ', toolbar=no'; ...

16. Passing variables from a script to a pop up window    forums.devshed.com

I am having problems passing varables to a new popup window. window.open('results.htm,' ') Basically I have a script that performs calculations of various types and then calls up this popup html document with reserved

tags for the variables calculated. However, I can't get the variables from the script into the new doc. For example, the script accepts the name ...

17. Transfer variable to popup (a mind bender)    forums.devshed.com

Sorry if this is a bit long-winded but it seems necessary to outline the scenario as I am not really sure of the correct line of solution here. Short version: How to get a specific (variable) variable into a popup? Possibly from an onClick command. Or, have the popup get the value -- from the point of launch? The long version: ...

18. IE not sending variables from popup to parent    forums.devshed.com

19. Pass variables from POPUP to Parent    forums.devshed.com

Hi guys !! Marry Christmas 4 all JSers !!! I've one q. 4 ya: I open a popup, then i have an inputbox where user should type some text, let's say ... his email. Then he presses a button, and i want to send that typed text, to a hidden field in a form located in parent window... Can this be ...

20. How do i send a variable to a popup?    forums.devshed.com

21. Refreshing the content of a variable from a pop-up    forums.devshed.com

HI, I have a webpage that when a button is clicked it opens a pop-up. In this pop-up, there's a list of links that when one is clicked performs a javascript function that refers to the window opener in order to update some content. There's one javascript variable that I display in the plain document (no input tag) that I want ...

22. Pass multi variables to Javascript popup    forums.devshed.com

24. send a variable from a popup to a main window    phpfreaks.com

I have a page with a link thats opens a popup window, in this the user will upload a image, using php script. question: I want a button in the popup, when you click, the popup will close and send the variable(which contains the name of the image)to the main page from where I opened the popup window?

25. Passing extra variables to a popup    phpfreaks.com

Our Family Photos