Thread 13 of 13 | | Thread Starter | | |  blkshirt | Drop down list box question using JavaScript.Here's the little problem I have facing me..., , I have a webpage that will have frames in it... There will be a top and left frame with a main area for placing html files. However the top and left frames will be static while the main area will change., , If I place a drop down list box on the left frame and it looks something like this:, , How do I get each event to relate to a specific html file and show that html file that has been selected by the user to show up in the main page area? I've been told I should do this using javascript however I haven't been able to find exactly what I'm looking for. I did find an example of it [URL=http://www.deltatiming.com/events/2003/allohio/]here[/URL] but I've tried looking at the source code... | 4 replies. Last post: |  KBerry | To document the unique issue, the javascript needed to refer to the frame to open, "mainFrame" based on the frames defined in index.html, , , , , |
|
 3617 Hits | |
Thread 12 of 13 | | Thread Starter | | |  Walt | Submitting a Form Using a ScriptI am wanting to submit a form's hidden values with a script. I wrote a function:, function send(){, form_name.submit(), }, , Then I put onUnLoad="send()" in the BODY tag and it doesn't give the desired results., , I need to post the values in the hidden fields to any page's link in my site that is clicked. My objective is to let the page forward the fields to the next page without the user having to click a submit button., , Any help will be greatly appreciated, thanks., , Walt | 3 replies. Last post: |  lrutledge | To prevent code from being translated to HTML, you treat it the same way you would when displaying HTML code from within a HTML page. For example, to display <HTML> you enter an ampersand (&) followed by lt; then enter "HTML" and finally, another ampersand (&) followed by gt;. So the text to enter would be:, , & lt;HTML& gt;, , but without the spaces. The "lt" stands for "Less Than" and the "gt" stands for "Greater Than"., , So the code in ... |
|
 1758 Hits | |
Thread 11 of 13 | | Thread Starter | | |  gooche77 | Connecting MS Access DB to Internet ExplorerI'm a Database Developer and have been presented with the challenge of connecting my MS Access DB to an online interface which has to transmit 3 or 4 fields from a recordset onto the web page and submit. (every 10 loans requires a submission) I imagine i would do this with Javascript, but i don't know what references need to be set in the VBA or the syntax of transmitting these commands to Internet Explorer. | 2 replies. Last post: |  gooche77 | Thanks for the reply! The DB resides on Chase's internal server. What i need to do is retrieve around 1000+ records(loans) and loop thru 10 at a time. (this i can do). I want to populate variables thru VBA and then paste those variables onto a web page. Once this is done, i need to hit the submit button.Is this possible thru VBA and Javascript or am i dreaming the impossible dream? |
|
 2069 Hits | |
Thread 10 of 13 | | Thread Starter | | |  lightenin | Javascript window.open helpGuys, I have created a page that puts something in a paypal basket and then when it is all paid for and the return to merchant button is clicked i need to open a download link for the item bought, however i can get it to open a normal url but i cant ... |
 2112 Hits | |
Thread 9 of 13 | | Thread Starter | | |  rohitpabby | Running EXE from HTML LinkHi All!, , I can run an EXE from a DOS prompt and ca also pass parameters with it, giving a space , , between exe and parameter e.g , , test.exe testparameter, , Now I want to do the same thing through an HTML page by clicking a hyperling. How to do , , this? Please Help...., , Thanks | 1 Reply: |  wpantoja | See my reply in Web Page Layout. |
|
 1191 Hits | |
Thread 8 of 13 | | Thread Starter | | |  bryansgirlalways | calculate image and download sizeHi, , , I was wondering if someone could provide some tips on how to write a java script code that would do the following: , - input an image number, resolution and size and calculates the amount of space the images will occupy on disk, when downloaded and the speed of download at different bit rates. , , ,  | 1 Reply: |  jackc | I think dreamweaver can have this function. |
|
 2424 Hits | |
Thread 7 of 13 | | Thread Starter | | |  rich_06 | onUnload() event handlerHow can I force Internet Explorer to open up and return the output of a cgi to a popup window using the onUnload() event handler? | 1 Reply: |  KBerry | I placed a working demo here. You can view source:, , http://www.fireandrescuetraining.ca.gov/onunload.html , , You should be able to replace the DISNEYLAND URL with a script., , function doit() {, window.open('http://www.disneyland.com', 'Popup', , 'width=400,height=300,resizable=yes,scrollbars=yes,menubar=yes');, , }, , body onUnload="JavaScript:void( doit())" |
|
 1668 Hits | |
Thread 6 of 13 | | Thread Starter | | |  aka51 | FormDoes anyone have any ideas on how I can go about solving this problem. I have a form that is submitting it contents using mailto: , After the form is sent off it remains on the form page, is there a way to have it redirected. | 1 Reply: |  jdschram | yup...using javascript a presume...
this shoud be happening after the page has been submitted and the contents processed..., < !-- Begin, url=("PageToRedirectTo");, window.location=url;
// End -->or
< !-- Begin, url=("PageToRedirectTo");, document.write(' , // End -->
|
|
 1575 Hits | |
Thread 5 of 13 | | Thread Starter | | |  decren | need guidance to transfer text from one table to aTable1 contains an input-textbox; and a push-button to add a new row to Table2. The button also activates a script to transfer the information in the text-box to the new cell in Table2. I originally used cloneNode which works fine:, , // cell 1 - input text, document.getElementById("Table1");, var el=document.getElementById("textBox").cloneNode(true);, var cell1 = row.insertCell(1).appendChild(el);, , but I only want to transfer the text (not the text-box.) I tried to adapt innerHTML, but am having trouble doing so. What am I doing wrong?:, , // cell 1 - input text, document.getElementById("Table1");, var el = document.getElementById("textBox").innerHTML;, var cell1 = row.insertCell(1).textBox(el);, , any assistance would be appreciated... | 1 Reply: |  decren | Got it solved!!, , var el = document.getElementById("textBox").value;, var cell1 = row.insertCell(1);, cell1.appendChild(document.createTextNode(el)); |
|
 1906 Hits | |
Thread 4 of 13 | | Thread Starter | | |  deleted_member | Calling JavaScript code from a linkI've got some JavaScript Code I wish to call from a link. How do you do that? | 1 Reply: |  mprestwood | Here's how:, 1. Add the following JavaScript code between <head> and </head>:, , 2. Next, create a link that call... |
|
 1043 Hits | |
Thread 3 of 13 | | Thread Starter | | |  bhavyait | Javascript/AJAX approach to track stock pricesHave you guys wanted to have stock tickers on ur desktop/ web pages, but can't use applets as they were heavy, too much configuration than here is one approach and light weight solution all for free., , Ajax based solution refreshes data at configure... |
 1996 Hits | |
Thread 2 of 13 | | Thread Starter | | |  bhavyait | Ajax anyoneHi, I have hust started learning and using ajax. I m working on a technical analysis website and want to use ajax extensively. Also working on using google api's heavily.You can have a look at http://www.bhavyait.co.inthis is my site that i am working on.Have you guys wanted to have stock tickers on ur desktop/ web pages, but can't use applets as they were heavy, too much configuration than here is one approach and light weight solution all for free., , Ajax based solution refreshes data at configured time interval and you don't have to wait for your favourite stock to appear in ticker. You have all latest view auto updated and for all the stocks at one go., , , Check this out, http://www.bhavyait.co.in/resources/tutorials.html, , See NSE in action at, http://www.bhavyait.co.in/resources/nsedashboard.html, , See BSE in action at, http://www.bhavyait.co.in/resources/bsedashboard.html, , , See yahoo dashboard in action at, http://www.bhavyait.co.in/resources/yahoodashboar... |
 2100 Hits | |
Thread 1 of 13 | | Thread Starter | | |  rbn | Loaded FORM by AJAX is internally unknownHello everyone,
i have a problem with AJAX that should be solved by a simple Javascript trick, at least i hope so :-)
after my AJAX requests i change the structure of my present pages just by replacing the content of some named elements with the loaded content. Works fine.
If the content contains a html form the form is - well - unknown to the browser. That means there is no effect by pressing CR. To submit the form the user has to press the submit button by mouse or use TAB until the focus is at the submit button and then use CR. That works fine too, but is not acceptable for long terms.
Assuming the browser loads normal html files by organizing the elements in a tree and processing the tree afterwards to get the form, get the submit buttons, get especially the configured key codes.
The question: is there a javascript function to let the browser rescan the internal html tree to get the changes that i have done AFTER the loading the browser ... |
 1836 Hits | |
|