Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to change cursor? 1

Status
Not open for further replies.

piterskiy

Technical User
Aug 24, 2007
8
0
0
US
Hello,

I have the following html fragment:

...
<td class="dataHeader" onclick = "javascript:doSort('<%=sCols.SORT_FCODE%>')">&nbsp;Code&nbsp;</td>
...

I just want to add a code which will change the cursor type to hand when pointing on the column name.

How can I do it?

Thank you.
 
You need to set the cursor style with css:
<code>
<td class="dataHeader" onclick = "javascript:doSort('<%=sCols.SORT_FCODE%>')" style="cursor: pointer;">&nbsp;Code&nbsp;</td>
</code>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top