Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

iFrame displaying only javascript calendar

Status
Not open for further replies.

gregaug

Programmer
Sep 9, 2005
61
US
Hello,

I'm trying to use an iFrame, but I never have before. I have a javascript file (calfile.js) that pops up a calendar when a link is clicked. In order to make sure the calendar shows properly, it hides the SELECT and APPLET elements. Is there some way to make this calendar show up in an iFrame? I would like to do this by writing the iFrame code in calfile.js, but I'm not really sure how to start off, so any help would be appreciated.
 
You can put JavaScript in an *.html file, but you cannot put HTML in a *.js file (unless it's embedded in a document.write(...) statement... which I don't believe is what you're after here).

There are many variations to using an IFRAME, but for starters, just pretend it is a separate web browser, but instead of putting the URL in the address bar of the browser, you put it in the SRC attribute in the IFRAME tag.

Basicall, in your parent document, you would have:
Code:
<iframe id='myIfrmae' src='[URL unfurl="true"]http://www.myDomain.com/myIframePage.html'[/URL] width='100%' height='200px'></iframe>

Then, your myIframePage.html would be written (by you) to use the calendar script however it is supposed to be used. Have you seen any examples of a page that uses the script the way YOU want to use it? Just copy the methodology from that page and you're good to go!

If that's not enough to go on, post further.

'hope that helps.

Dave


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
O Time, Strength, Cash, and Patience! [infinity]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top