beginner looks for a hint answer???

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Norman Fritag

    beginner looks for a hint answer???

    Hi there,

    I have a <a href "JavaScript:t(' 1')"> event that expands and collapse
    hyperlinks, similar to a treeview (<div>).

    The webpage is split in Left and right side. The "treeview" resides on the
    left and the contents gets displayed on the right side. Everytime the
    JavaScript:t('1 ') is clicked the section below is displayed. The text of the
    JavaScript hyperlink is at the top similar to a header. When I click on the
    hyperlinks in the section area the corresponding page opens.
    The code works fine.

    Now I want open at the same time when the hyperlink JavaScript:t('1 ') is
    clicked, a corresponding web page to the hyperlink text.

    How could that be done?

    regards
    Norman


  • Lasse Reichstein Nielsen

    #2
    Re: beginner looks for a hint answer???

    "Norman Fritag" <mtp.net@ozemai l.com.au> writes:
    [color=blue]
    > I have a <a href "JavaScript:t(' 1')"> event that expands and collapse
    > hyperlinks, similar to a treeview (<div>).[/color]

    That sounds like a FAQ entry:
    "I have <a href="javascrip t:somefunction( )"> what ... ?"
    <URL:http://jibbering.com/faq/#FAQ4_24>
    [color=blue]
    > The webpage is split in Left and right side.[/color]

    Form the following, I assume you mean two *frames*.
    [color=blue]
    > The "treeview" resides on the left and the contents gets displayed
    > on the right side. Everytime the JavaScript:t('1 ') is clicked the
    > section below is displayed. The text of the JavaScript hyperlink is
    > at the top similar to a header. When I click on the hyperlinks in
    > the section area the corresponding page opens. The code works fine.
    >
    > Now I want open at the same time when the hyperlink JavaScript:t('1 ') is
    > clicked, a corresponding web page to the hyperlink text.[/color]

    <a href="correspon dingPage1.html" target="right"
    onclick="t('1') ;"> dillerdaller </a>

    /L
    --
    Lasse Reichstein Nielsen - lrn@hotpop.com
    DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
    'Faith without judgement merely degrades the spirit divine.'

    Comment

    • Norman Fritag

      #3
      Re: beginner looks for a hint answer???

      Thanks Lasse,

      I was understanding what you where talking about. I am and absolute
      beginner!
      Besides, I used the order as you described below and it worked Ok!!

      regards

      Norman


      "Lasse Reichstein Nielsen" <lrn@hotpop.com > wrote in message
      news:fzh3h3s8.f sf@hotpop.com.. .[color=blue]
      > "Norman Fritag" <mtp.net@ozemai l.com.au> writes:
      >[color=green]
      > > I have a <a href "JavaScript:t(' 1')"> event that expands and collapse
      > > hyperlinks, similar to a treeview (<div>).[/color]
      >
      > That sounds like a FAQ entry:
      > "I have <a href="javascrip t:somefunction( )"> what ... ?"
      > <URL:http://jibbering.com/faq/#FAQ4_24>
      >[color=green]
      > > The webpage is split in Left and right side.[/color]
      >
      > Form the following, I assume you mean two *frames*.
      >[color=green]
      > > The "treeview" resides on the left and the contents gets displayed
      > > on the right side. Everytime the JavaScript:t('1 ') is clicked the
      > > section below is displayed. The text of the JavaScript hyperlink is
      > > at the top similar to a header. When I click on the hyperlinks in
      > > the section area the corresponding page opens. The code works fine.
      > >
      > > Now I want open at the same time when the hyperlink JavaScript:t('1 ') is
      > > clicked, a corresponding web page to the hyperlink text.[/color]
      >
      > <a href="correspon dingPage1.html" target="right"
      > onclick="t('1') ;"> dillerdaller </a>
      >
      > /L
      > --
      > Lasse Reichstein Nielsen - lrn@hotpop.com
      > DHTML Death Colors:[/color]
      <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>[color=blue]
      > 'Faith without judgement merely degrades the spirit divine.'[/color]


      Comment

      Working...