Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript
|
Javascript General Javascript discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 27th, 2005, 09:51 AM
Registered User
 
Join Date: Oct 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to MaxxaM
Default onChange'JavaScript:window Question

Hello,

I have a drop down box that I want the value selected passed onto a different frame. I can get it to work to the current frame, but I don't know how to send it to a different frame within the same page.

This is what I have that works in the same frame.

<select onChange='JavaScript:window.location="http://cooter/Quota/NAVIGATION.ASP?LinkID=" + this.value' name='QuotaID'>

Thanks for any help you can provide!

 
Old October 27th, 2005, 11:18 PM
Friend of Wrox
 
Join Date: Oct 2004
Posts: 553
Thanks: 0
Thanked 1 Time in 1 Post
Send a message via MSN to vinod_yadav1919 Send a message via Yahoo to vinod_yadav1919
Default

Hii MaxxaM!!
<script>
function sendToFrame(obj)
{
window.parent.SecondFrameName.sencondFrameFun(obj. value)
}
</script>
<select onchange="sendToFrame(this)" name='QuotaID'>

****
In ur second frame define function

<script>
function sencondFrameFun(value1)
{
alert(value1)
}
</script>

Hope this will help you,
Note:-this link can help you http://p2p.wrox.com/topic.asp?TOPIC_ID=35884

Cheers :)

vinod





Similar Threads
Thread Thread Starter Forum Replies Last Post
Centering Popup window & Blur Parent window jkusmanto Javascript How-To 0 May 25th, 2007 03:19 AM
Window refresh and window pop up in Java Script Aleksandra Javascript How-To 2 March 2nd, 2007 06:47 PM
Another window.event.srcelement question Ron Howerton Visual Basic 2005 Basics 0 January 16th, 2007 05:09 PM
closed parent window when opened child window jaiwin Javascript How-To 0 October 8th, 2006 12:54 PM
XML Spy question - output window extn pgtips XML 0 October 1st, 2004 07:06 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.