1
vote
3answers
21 views

javascript cursor image position

i change my cursor background to image file , the cursor in top of image $(".mainDiv").attr("style", "cursor: url(./images/myImage.png) ,auto"); How to set the cursor in bottom of image ?
0
votes
3answers
36 views

How to get the div in which the cursor or caret is placed?

I have three contenteditabledivs and I want to know ,in which div the user has placed the cursor or caret through tab key or mouse click, <div contenteditable="true"></div> ...
0
votes
1answer
35 views

Onmouseover cursor doesn't change in IE

This is my JS code: <script type="text/javascript"> function leftCur(elem) { elem.style.cursor = 'url("izgled/slike/right.png"), auto'; }; </script> And ...
0
votes
2answers
27 views

Create a transparent HTML cursor

Is it possible to create a transparent HTML cursor on a web page? I'm using a div as a cursor, and I want to make the div 50% transparent: http://jsfiddle.net/mCgmP/16/ <div ...
1
vote
2answers
133 views

Get current cursor position in a texbox

I don't know how to get the current cursor position for Firefox and Chrome. The following is the code which I am using, <!DOCTYPE html> <html> <head> <script> function ...
0
votes
1answer
32 views

Dynamically changing cursor/setting cur files

How can I dynamically change the style of cursors on my div using JS or CSS? Because I have multiple situations... I've tried the code below: div.addEventListener("mouseover", function(evt) { ...
0
votes
1answer
57 views

Spinning Cursor (Thobber) with Javascript

Hello, I like to display a spining thobber-like cursor while validating a Form on the server side. Do you have any other (better) suggestions ? I have found this, but how to add it to the cursor ? ...
0
votes
0answers
43 views

Remove caret from input

How would I go about if I wanted to change remove the caret from an input field altogether, generally speaking? I've tried a little JS hack in which I have a div following my characters around based ...
5
votes
2answers
192 views

Fade out mouse cursor when inactive (with jQuery)

I have an element with class fade-object that fades out when the mouse is inactive for a certain amount of time (5000 milliseconds in this case), and fades back in when the mouse is moved again. This ...
0
votes
1answer
182 views

IE8 jQuery place cursor in a textbox possible only at the beginning

I'am on my limit. I have to implement some features for a web application. Problem is, it can only be implemented for IE8 because of company policies... IE8 does even not load jsFiddle normally. I get ...
2
votes
3answers
118 views

Replace cursor with an HTML element

Using JavaScript, is it possible to replace the cursor with an HTML element (such as a div or canvas) instead of a custom image? It would be useful in some scenarios to replace the cursor with an HTML ...
0
votes
0answers
37 views

Placing the cursor in a certain place [duplicate]

I have a content editable div that acts like a text box. I then have a function to find regex's and replace them with spans and stuff. text = text.replace(/@(\w+)(\s)?/, ...
0
votes
2answers
111 views

How do I convert this css to javascript

I want to hide the cursor for my browser based game. I don't want to do this until the game starts. I have this in CSS: * { cursor: none }. How would I do this in JavaScript? My target browser is ...
11
votes
1answer
319 views

Determine an element's custom CSS cursor hotspot coordinates from JavaScript

When I attempt to get the full CSS cursor definition of an HTML element in JavaScript, it omits the hotspot (target pixel) coordinates for some reason and is resulting in my cursor resetting its ...
0
votes
0answers
112 views

Issue with cursor position in onkeyup function

I am using javascript onkeyup function for on the fly formatting of a text box (the format should be TESTXXXXXX-XXXXX where X is a number). The problem is after formatting, the cursor always goes to ...
2
votes
1answer
148 views

How do I access subdocuments in MongoDB queries?

So I have the following code. I need it to run in the MongoDB shell. It queries the database for people with their attribute marked as true. Now I am having trouble because I do not know how to change ...
0
votes
1answer
426 views

bootstrap popover, how to make it appear on the place where my mouse move on?(not only top/bottom/right/left)

This is an example code to show the popover window display below my button: $.fn.popover.defaults = $.extend({} , $.fn.tooltip.defaults, { placement: 'bottom', content: '' Now I want the popover ...
0
votes
1answer
200 views

Javascript - Particle Generation & Cursor Tracker

I need to make a piece of JavaScript code that generates "particles" (Just little white circles) and I need code to animate them (make them swirl around a certain point randomly) ... (The physics ...
2
votes
1answer
629 views

webgl three.js get mouse position on Mesh

Honestly, i tried to find solution for question below, please help me. And sorry for my English :) I have created a map, added a camera + added camera control of all dimensions. And when I get the ...
1
vote
1answer
104 views

Relative movement for independant bullets (HTML5/Javascript)

I need some help with this code. The game I am making atm is a top down 2d game. My character can already move and shoot a bullet. The problem im facing is making the bullet shoot towards the ...
0
votes
1answer
73 views

Set the cursor in JavaScript for a long synchronous operation

I am trying to set a global page cursor (using cursor: wait !important; on document.body) at the beginning of a long-running synchronous XmlHttpRequest (synchronous sucks I know but let's not worry ...
0
votes
0answers
91 views

How to move/scroll contents when touch-draging scroll cursor from mobile? (niceScroll jQuery plugin)

I'm using niceScroll jQuery plugin and touch-dragging scrollcursor on the right side doesn't move the contents (opened site from android mobile browser). Is there any way to enable it?
0
votes
2answers
120 views

Drag cursor in javascript?

I need to set the drag cursor in some places but i can' see listened here http://www.w3schools.com/cssref/pr_class_cursor.asp In my case it apears when i drag some image : ...
1
vote
1answer
41 views

How to allow cursor to be full screen in html website [closed]

http://joeybabcock.me/ is the location, you can see the green space at the top and i want that not to be there, I have the cursor but it only appears on the top, i was wondering if anyone knew how to ...
2
votes
1answer
143 views

JavaScript: Get input text position (in chars) from mouse click

I have an HTML <input type="text"> or <textarea> with random existing text, say [12345678] or [12345 67890] I have an arbitrary positioning mousedown click event inside this text. I need ...
0
votes
1answer
137 views

Custom Cursor code comes with a black square in webkit. Am I missing something?

I have the following code: <style type="text/css"> #test-area { height: 200px; border: 3px dashed #CCCCCC; background: #FFFFFF; padding: 20px; ...
4
votes
1answer
101 views

Pre-Load Custom Cursors With Javascript

I have been able to successfully preload image gallery before page loads but was wondering how I could do the same for custom cursor.cur files as it doesn't work using the image method below as it ...
1
vote
2answers
389 views

How to set caret/cursor position in a contenteditable div between two divs.

Consider the following contenteditable div. <div contenteditable="true"> <div>bold text</div><div>bold text</div> </div> If I position the cursor between the two ...
2
votes
1answer
139 views

Change cursor when dragging [duplicate]

Possible Duplicate: Changing Mouse Cursor for HTML5 Drag Drop Files (GMail Drag Drop) I'm developing drag-and-drop extension for Google Chrome. Selected text on the page can be dropped by ...
0
votes
0answers
105 views

Properly handling relative vs. absolute cursor position when container bounds canvas (interactive chart)

I have an issue with the cursor positioning, in which a canvas with relative positioning is bounded by a center container with a scrollbar to handle overflow. My question is how to handle such an ...
2
votes
2answers
299 views

How to change appearance of “text-selection” cursor on webpages or disable cursor changing while a text is selected in all major browsers?

I want to prevent the mouse cursor from changing when I move it over some text. Is this possible? If not, I would like to change the appearance of text-selection cursor - is it possible with css / ...
0
votes
1answer
172 views

Mouse Cursor Electric Effect [closed]

What, in your professional opinion, would be the best way to achieve an electric effect stemming from a central location in the center of the screen that is connected to the cursor and follows it ...
0
votes
0answers
55 views

Moving input text cursor when dragging a dom object

First of all, sorry for my bad english! I have a draggable object that have to be dropped into a text field. When this object get dropped on the text input, the text have to be ( virtually ) split in ...
2
votes
1answer
175 views

CSS cursor is not working on dynamically added map tag

Here comes my code: function addAlbum(){ var attr; var parent; var newelement; /*image*/ newelement = document.createElement("img"); newelement.src = "criar_album.png"; ...
2
votes
2answers
1k views

Change HTML text input cursor symbol to “block” [duplicate]

Possible Duplicate: How to use this square cursor in a HTML input field? Is there a way to change the cursor style of an HTML text <input>'s cursor to the "block" kind like a command ...
2
votes
2answers
188 views

cursor: mouse grab javascript

I have two images: one with an open hand, and one with a grabbing hand. I was hoping that a simple "onmousedown" and "onmouseup" functions help to make the famous grabbing hand you can see in ...
0
votes
2answers
243 views

Change cursor with getElementsByClass in JavaScript?

I want my cursor to be a hand when hovering over elements with a class of "one" after clicking a button. Here is my code <!DOCTYPE html> <html> <head> <script ...
0
votes
1answer
190 views

Javascript backspace functionality

I need to implement the backspace key behaviour so that my cursor is placed one position to the left without the user pressing the Backspace key, but rather after a string is added programatically ...
2
votes
2answers
264 views

how to change cursor image during the drag in javascript

i have a problem i can't change size of cursor image what's wrong with my code? document.getElementById("myDiv").addEventListener("dragstart", function(e){ var img = new Image(30, 40); ...
1
vote
1answer
86 views

changing to custom cursor in gmail with css

I'm trying to make a mail where the cursor changes to a custom cursor. It works in my mac mailclient. But on chrome (gmail webclient), Gmail seems to strip that piece of code. cursor: ...
1
vote
1answer
100 views

Get row and column number from mouse coordinates

I am using Ace for my in browser text editor. editor.on("mousemove", function (e) { // use clientX clientY to get row and column locations }); From clientX clientY coordinates i need actual row ...
3
votes
2answers
355 views

Getting cursor position in a canvas without jQuery

I am trying to learn how to use the HTML canvas element, and naturally, I am making a drawing application. So, I have the code set up for the actual drawing and animating part of the app, but I am not ...
0
votes
0answers
72 views

Javascript Cursor

I have the following script for a cursor trail, however the cursor image is appearing in the top left corner of the page and is not appearing as the cursor trail? What could be causing the script not ...
0
votes
0answers
99 views

Image Trail Script

I have the following script for a cursor trail, however the cursor image is appearing in the top left corner of the page and is not appearing as the cursor trail? What could be causing the script not ...
0
votes
2answers
116 views

Cursor coding for wordpress site

I have the following code which I would like to implement in my Wordpress site, in order to have a customized mouse pointer. where would I insert this code? Into the index.php file itself? Or into a ...
4
votes
1answer
523 views

How to setcursor position in GWT RichTextArea

Is there any ways I could set the cusror position in GWT RichTextArea. There is method setCusrorPosition() to do so in TextArea, but not in RichTextArea. May be native JavaScript (called from GWT) ...
0
votes
1answer
251 views

How to get the current text cursor position on a mouse hover event?

I'm creating a hidden contact form that would appear when the mouse is positioned above the element. This is quite simple and i have achieved it by doing: $(document).ready(function(){ ...
0
votes
2answers
2k views

focus() input element with jQuery, but the cursor doesn't appear

I want to focus an input element when a div is clicked. My HTML looks like this: <div class="placeholder_input"> <input type="text" id="username" maxlength="100" /> <div ...
0
votes
0answers
122 views

to hide my mouse cursor after an idle time and it will be showed up when I move the mouse

I am creating a reader web application. I want to hide my mouse cursor after an idle time and it will be showed up when I move the mouse for my webpage using JavaScript, CSS. What is best way to ...
0
votes
0answers
297 views

Scroll div on image hover

I've been at this for a few days now with no luck-- I would like the content in a specific div to scroll (at a steady pace) either up or down when hovering over these links: <div ...

1 2 3 4