-
Ok i have two things i need to do
#1) i want to make it so that when you click on any part
of any cell in a row it will take you to a site
designated for that row
#2) I need to have a way to load a text file into a
template style web page so that alot of links led to
the page but depending on what perameters were
sent it will load a specific file.
Note: I am not very good at writing html or subsideraries but i can edit to my liking so any examples or cgi files are appriciated.
THis is the html page that it will be applied to if it helps to see what needs to be done:D
Site
Thanks in advance
E.P.
-
put onClicks in the <TR> or <TD> tags
(this only works with IE)
Code:
<HTML>
<BODY>
<table border=1>
<TR>
<TD onClick="window.location='http://forums.vb-world.net'">vb-world</TD><TD> </TD>
</TR>
<TR>
<TD> </TD><TD> </TD>
</TR>
</table>
</BODY>
</HTML>
Q2 needs explaining a bit more please....
-
thanks that is what i was looking for:D
-
for the second ? i want to have the links in my code archive to load on a universal html doc but load a different text file depending on the sniplet name so that if i load the showsniplet.html from a link i can add some sort of command line perameter that will tell it which txt file to load in the body:D
-
also i was wondering isf there was a way to get rid of the default ibeam cursor when you mouse over text. that would improve the look of my site alot:D
-
you should be able to get rid of the Ibeam cursor like this:
Code:
<style type="text/css">
BODY {cursor: whatever cursor;}
</style>
-
what do you put there for the arrow
-
These are the possible values for the cursor attribute:
Code:
auto
crosshair
default
hand
move
e-resize
ne-resize
nw-resize
n-resize
se-resize
sw-resize
s-resize
w-resize
text
wait
help
Default is what you are probably looking for, but you may want to experiment for some cool effects.
-
thanks
Do you know anything about the second question in my first post?
-
well i don't know Perl, if that is what you want it done in. But i could do it in ASP and probably PHP too! :)
-
my site supports any of the above:D