Is there a way to change the mouse pointer icon using javascript (or any other method) when I attach it to plain text on which I want it to appear like a hand, like with links on a web page.
See http://www.w3schools.com/cssref/pr_class_cursor.asp
Using css:
div {cursor: pointer; }
See the css cursor attribute.
This is the best way to do this.
You can use as:
onmouseover="this.style.cursor = 'hand';" //on mouse over onmouseout="this.style.cursor = 'auto';" // on mouse out
Source: https://habr.com/ru/post/1397257/More articles:How can I get HTTP request body data in codeigniter? - codeigniterUpdating multiple rows in 1 column in MySQL - sqlHTTP 404 Status in Spring 3.1 MVC Application - springquick comparison of arrays in iOS - optimizationTomcat unexpectedly throws ClassFormatError at startup - javaJava code analysis tools - javaTitle window designation through && style triggers in XAML - triggersWhat is wrong with my C # code? - c #How to draw a cancelable buffer? - javadifference between solr versions for java and dotnet - javaAll Articles