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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Linnq
  • Order by date
  1. Linnq

    returning to home page from frame page.

    Try setting the target of the homebutton link to parent.top.FRAMENAME (case sensitive) i.e. <a href="Blah.html" target="parent.top.FRAMENAME"> you can reference any frame within a frameset using this method and I think it is pretty widely supported. Linq
  2. Linnq

    Netscape Issue with JS function

    I have a script which detects whether or not the page was loaded from within a particular frameset, if so, the home button is not visible. If not then the home button is visible, works fine in IE but not in NS 7.1 or MoZilla 1.6 I have given the home button on the pages both a name and an id of...
  3. Linnq

    returning to home page from frame page.

    Are you using JavaScript to open the frameset? I think if you pass a name to the frameset page you are opening then you can use onClick="javascript:window.close('NameOfFrameset')" for the script on your home button Linq
  4. Linnq

    Frames, can the order in which they load be controlled?

    I have built a menu that grey's out a button when the corresponding page is loaded in the "main" frame, it works fine but when the frameset loads the menu page loads before the home page, therefore the menu page throws an error because it needs to load after the home page and determine which...
  5. Linnq

    getting correct Data from DB but have multiples of the same value

    If you have multiples of the same value being drawn from DB, how do you limit the select to only show the value once?
  6. Linnq

    Populate a select based on previous selection

    I have a select box populated with vendors, when the user clicks the vendor I would like to populate a select on the next page with that vendors item types, any help is greatly appreciated.
  7. Linnq

    Break into Frames

    Dan, I just tried window.opener.top.FrameName but it still throws an error, &quot;Object doesn't support this property or method&quot;. Thanks though.
  8. Linnq

    Break into Frames

    I've opened a window outside of the frameset, now from that window I need to open a new page within the frameset and close the pop up. onClick=&quot;javascript:window.opener.open('Tips.html','Tips') I've tried various combos of &quot;window.opener.top.parent.FrameName&quot; with no luck. Any...
  9. Linnq

    Screenwidth Issue?

    Thanks dwarfthrower your right. It is much more elegant.
  10. Linnq

    Screenwidth Issue?

    Thanks, I tried that one already. I've tried a few different combinations and haven't had any success. I used the same approach to a banner last year and it worked but it was in html.
  11. Linnq

    Screenwidth Issue?

    This is probably an easy one, I'm having some difficulty getting an image to occupy 100% of a cell in a table. I'm trying to accomodate high resolutions by stretching a slice taken from the graphic. Here's the code <table align=&quot;left&quot; border=&quot;0&quot; width=&quot;100%&quot...
  12. Linnq

    How can I place a dynamicly generated text box in a specific row?

    I've tried a few things but haven't had any luck, thanks for the quick response. <script language=&quot;JavaScript&quot;> //instantiate a global variable to hold the # of added controls var numberOfAddedControls = 0; function addTextBox(){ // increment number of added controls...
  13. Linnq

    How can I place a dynamicly generated text box in a specific row?

    I have a function dynamicly generating text boxes and would like to place the boxes in a specific row of a table.

Part and Inventory Search

Back
Top