CLickable <td> <tr>
How can I make a whole <td> or <tr> clickable instead of just the word. for instance:
<table>
<tr>
<td>
<a href = "home.asp">Home</a></td></tr></table>
How can I make a whole <td> or <tr> clickable instead of just the word. for instance:
<table>
<tr>
<td>
<a href = "home.asp">Home</a></td></tr></table>
I have an image that i want to turn into a button.
The image also include an onclick event which will pass some id to another page.
How can i make the button to have the cursor turn into the "hand" (clickable) effect when mouse rollover?
<img src = image.gif onClick="document........">
i have this
Response.Write Replace(Rs("Event_Details") & " ", vbCrLf, "<BR>") & vbCrLf
coming from access db.
how can i get that to make a hyperlink clickable as well??
We have an ASP site that hits up an Access database of categories of
products and products. (e.g. Categories = Napkins, Tablecloths;
Products = 20x20 Napkins, 21x21 Napkins, 54x54 Tablecloths, 60x60
Tablecloths)
We currently have select boxes that when you select a category, it
populates the next select box with the proper list of products (i.e. I
select Napkins as a category, I get a listing of the Napkins)
We would like to put a clickable link before each of these select
boxes that would pull up a pop up with links from the records from the
proper table.
(e.g. I click the categories link and a popup with html
anchor tags of Napkins and Tablecloths appear) I click on the Napkins
anchor and it populates the Categories Select box with Categories and
Napkins being selected.