Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Change the cursor for JavaScript links
#1
The tips that i'm giving now, are very useful:

1. Change the cursor for links that open in new window

This neat trick will change the mouse pointer when you hover it over links that will open a new window. Add the following code to your userContent.css file:

/* Change cursor for links that open in new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair;
}



2. Change the cursor for JavaScript links

This tip will change the mouse pointer when you hover it over links that will perform a JavaScript command. Add the following code to your userContent.css file:

/* Change cursor for JavaScript links */
a[href^="javascript:"] {
cursor: move;
}
Reply
#2
(02-04-2010, 05:21 AM)lucy Wrote: The tips that i'm giving now, are very useful:

1. Change the cursor for links that open in new window

This neat trick will change the mouse pointer when you hover it over links that will open a new window. Add the following code to your userContent.css file:

/* Change cursor for links that open in new window */
:link[target="_blank"], :visited[target="_blank"],
:link[target="_new"], :visited[target="_new"] {
cursor: crosshair;
}



2. Change the cursor for JavaScript links

This tip will change the mouse pointer when you hover it over links that will perform a JavaScript command. Add the following code to your userContent.css file:

/* Change cursor for JavaScript links */
a[href^="javascript:"] {
cursor: move;
}

Hi..

Your tips and tricks are really nice. I will use this one in my future. But what is the mouse? What Type The Cursor Currently Is?

thanks !!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Firefox shuts down when javascript enabled Jerry_Falwells_God 1 831 03-02-2010, 02:24 AM
Last Post: jckkeith
  For Firefox 3.0.8, is there an add-on like Snap Links? Advice Pro 0 580 03-26-2009, 07:09 AM
Last Post: Advice Pro
  parsing XML using Xpath and Javascript Kostya 0 1,308 05-08-2008, 06:26 PM
Last Post: Kostya
  Snap Links 0.0.3 for Firefox Forum Bot 0 344 01-18-2007, 06:19 PM
Last Post: Forum Bot
  JavaScript Problem sampitt94 3 819 11-14-2006, 07:46 PM
Last Post: FirefoxWiz

Forum Jump:


Users browsing this thread: 1 Guest(s)