Hyperlink to another spot on same page?

K

k.hofstetter

I've tried the <a href="#read here">event></a> and then <a event="read
here"></a> posted by "brelade", in Publisher 2003. Nothing happens. When I
take out the # sign in the first html fragment, and do a web page preview and
click on the first fragment, it opens up a new window with nothing. I'm new
at this and it's driving me crazy!! I want to have a calendar on one of my
pages and when there is an event, I want to put the word "event" on that date
but then have a link towards the bottom of the page that describes the event.
What do I do?
 
M

Mike Koewler

This isn't the answer you might expect, but take a look at WebCalendar.
It's a free program that installs a calendar on your site. You can list
just the events or if you want a longer description, add details. I
stick it inside an iframe so it looks like it is a part of my site. One
example is at www.stjamesotv.com/calendar.html

Your web host will have to allow you access to php and a MySQL DB.

Mike
 
D

DavidF

The first snippet was ok, though I would suggest that you do not use any
spaces between "READ" and "HERE". The second snippet is where you made the
error. The anchor name that you vary is READHERE, not event.

<A HREF="#READHERE">event</A>

<A NAME="READHERE"></A>

another example for the second such link that you might use:

<A HREF="#READHERE1">event</A>

<A NAME="READHERE1"></A>

DavidF
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top