PC Review


Reply
Thread Tools Rate Thread

creating a link when clicked displays the information below the li

 
 
=?Utf-8?B?c2F0aA==?=
Guest
Posts: n/a
 
      8th Feb 2006
i would like to place a link on my site, which when clicked displays the
information below the link rather than taking the user to another page or a
bookmarked paragraph at the base of the page; the information being a
paragraph of text.
any help would be appreciated
 
Reply With Quote
 
 
 
 
Murray
Guest
Posts: n/a
 
      8th Feb 2006
How many of these do you want on a single page? I ask because the answer
would be different if it's just one than if it were more than one.

--
Murray
--------------
MVP FrontPage


"sath" <(E-Mail Removed)> wrote in message
news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
>i would like to place a link on my site, which when clicked displays the
> information below the link rather than taking the user to another page or
> a
> bookmarked paragraph at the base of the page; the information being a
> paragraph of text.
> any help would be appreciated



 
Reply With Quote
 
MD Websunlimited
Guest
Posts: n/a
 
      8th Feb 2006
Really?

--
Mike -- FrontPage MVP '97 - '02
http://www.websunlimited.com
FrontPage Add-in


"Murray" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> How many of these do you want on a single page? I ask because the answer would be different if it's just one than if it were more
> than one.
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "sath" <(E-Mail Removed)> wrote in message news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
>>i would like to place a link on my site, which when clicked displays the
>> information below the link rather than taking the user to another page or a
>> bookmarked paragraph at the base of the page; the information being a
>> paragraph of text.
>> any help would be appreciated

>
>



 
Reply With Quote
 
MD Websunlimited
Guest
Posts: n/a
 
      8th Feb 2006
Hi Sath,

Place the following function into your head:

<script language="javascript" type="text/javascript" >
function displayDiv(id) {
debugger;
obj = document.getElementById(id);
if (obj.style.display == 'none') {
obj.style.display = '';
} else {
obj.style.display = 'none';
}
}

</script>

Then for any div that you wish to display or hidden

Use something like this:

<span style="cursor: hand;" onclick="displayDiv('myDiv');">My Div</span>

<div id="myDiv" style="display: none; " >

This is my div content

</div>



"sath" <(E-Mail Removed)> wrote in message news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
>i would like to place a link on my site, which when clicked displays the
> information below the link rather than taking the user to another page or a
> bookmarked paragraph at the base of the page; the information being a
> paragraph of text.
> any help would be appreciated



 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      8th Feb 2006
Tabbed Page?

This is a sample I did for a form but it sounds like what you want....
http://www.xmas-i-am.com/form.htm
(Done with FrontPage 2003 behaviors)

Bob
"sath" <(E-Mail Removed)> wrote in message
news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
|i would like to place a link on my site, which when clicked displays the
| information below the link rather than taking the user to another page or
a
| bookmarked paragraph at the base of the page; the information being a
| paragraph of text.
| any help would be appreciated


 
Reply With Quote
 
Bob Lehmann
Guest
Posts: n/a
 
      9th Feb 2006
Yes, really.

If there is only one div, then you don't have deal with the possible
requirement of closing a visible div when a different div is selected.

Bob Lehmann

"MD Websunlimited" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Really?
>
> --
> Mike -- FrontPage MVP '97 - '02
> http://www.websunlimited.com
> FrontPage Add-in
>
>
> "Murray" <(E-Mail Removed)> wrote in message

news:(E-Mail Removed)...
> > How many of these do you want on a single page? I ask because the

answer would be different if it's just one than if it were more
> > than one.
> >
> > --
> > Murray
> > --------------
> > MVP FrontPage
> >
> >
> > "sath" <(E-Mail Removed)> wrote in message

news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
> >>i would like to place a link on my site, which when clicked displays the
> >> information below the link rather than taking the user to another page

or a
> >> bookmarked paragraph at the base of the page; the information being a
> >> paragraph of text.
> >> any help would be appreciated

> >
> >

>
>



 
Reply With Quote
 
=?Utf-8?B?c2F0aA==?=
Guest
Posts: n/a
 
      9th Feb 2006
There are 15 of them
i hope this can be of some help

"Murray" wrote:

> How many of these do you want on a single page? I ask because the answer
> would be different if it's just one than if it were more than one.
>
> --
> Murray
> --------------
> MVP FrontPage
>
>
> "sath" <(E-Mail Removed)> wrote in message
> news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
> >i would like to place a link on my site, which when clicked displays the
> > information below the link rather than taking the user to another page or
> > a
> > bookmarked paragraph at the base of the page; the information being a
> > paragraph of text.
> > any help would be appreciated

>
>
>

 
Reply With Quote
 
=?Utf-8?B?c2F0aA==?=
Guest
Posts: n/a
 
      9th Feb 2006
No sorry it isn't a tabbed page

"Bob" wrote:

> Tabbed Page?
>
> This is a sample I did for a form but it sounds like what you want....
> http://www.xmas-i-am.com/form.htm
> (Done with FrontPage 2003 behaviors)
>
> Bob


 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      9th Feb 2006
My thinking too. Although I think the solution posted will work pretty
well.

--
Murray
--------------
MVP FrontPage


"Bob Lehmann" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Yes, really.
>
> If there is only one div, then you don't have deal with the possible
> requirement of closing a visible div when a different div is selected.
>
> Bob Lehmann
>
> "MD Websunlimited" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Really?
>>
>> --
>> Mike -- FrontPage MVP '97 - '02
>> http://www.websunlimited.com
>> FrontPage Add-in
>>
>>
>> "Murray" <(E-Mail Removed)> wrote in message

> news:(E-Mail Removed)...
>> > How many of these do you want on a single page? I ask because the

> answer would be different if it's just one than if it were more
>> > than one.
>> >
>> > --
>> > Murray
>> > --------------
>> > MVP FrontPage
>> >
>> >
>> > "sath" <(E-Mail Removed)> wrote in message

> news:4C6D0A11-7BBF-4FAB-8189-(E-Mail Removed)...
>> >>i would like to place a link on my site, which when clicked displays
>> >>the
>> >> information below the link rather than taking the user to another page

> or a
>> >> bookmarked paragraph at the base of the page; the information being a
>> >> paragraph of text.
>> >> any help would be appreciated
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      9th Feb 2006
I think he was suggesting that as an alternative.

--
Murray
--------------
MVP FrontPage


"sath" <(E-Mail Removed)> wrote in message
news:F986F67A-10C9-42D4-8094-(E-Mail Removed)...
> No sorry it isn't a tabbed page
>
> "Bob" wrote:
>
>> Tabbed Page?
>>
>> This is a sample I did for a form but it sounds like what you want....
>> http://www.xmas-i-am.com/form.htm
>> (Done with FrontPage 2003 behaviors)
>>
>> Bob

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a link for particular information suek Microsoft Excel Misc 2 9th Jan 2008 12:50 AM
creating the popup in the location of the clicked link meka Microsoft ADO .NET 0 19th Apr 2007 12:28 PM
A hyperlink that displays several choices when clicked =?Utf-8?B?Ymx1ZXdhdGVy?= Microsoft Frontpage 3 20th Nov 2005 02:09 PM
Last link clicked =?Utf-8?B?QnJpYW5JblBob2VuaXg=?= Windows XP Internet Explorer 0 19th Jun 2005 09:40 PM
Click on a link and a picture loads in cell depending on which link you have clicked gatesheadthunde Microsoft Excel Discussion 7 13th Jun 2004 03:19 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:57 PM.