2
votes
1answer
23 views

Why does document.onmousemove happen even when the mouse doesn't move?

I'm new to javascript and trying some code that I got from CodeLifter.com for capturing the XY position of the mouse. I've modified the code so that each time the mousemove function is called my ...
3
votes
2answers
60 views

CSS or Javascript to disable text selection highlighting from CTRL + A

Note: this questions is different from CSS rule to disable text selection highlighting Before ask I read the discussion history from above question. All works fine, except I can allow CTRL+A (Select ...
0
votes
0answers
25 views

Controlling the preventDefault to select which default to prevent

In a page I'm working on I have this HTML (simplified version; the original is a bit more complex). <a href="alink.php" > <b>1</b> <span name="aName" data-editable="text" ...
0
votes
2answers
24 views

jQuery UI : Before start draggable

How to implement a before start event to have a change to change the position and place in the DOM of the draggable element before jQueryUI start to drag?
-1
votes
1answer
32 views

Which function works first in two onclick functions

Let's say i have two onclick functions binded to an element . May i know which element works first ..?? Example : 1. elem.addEventListener('click',function(){ ...
0
votes
3answers
35 views

JavaScript and jQuery: Is there any PROPER onchange event?

As we all know 'onchange' event will fire ONLY when the input will loose its focus. But the web apps often requires to do something immediately if the input changes its value and without difference ...
0
votes
3answers
29 views

Intercept value changes within .blur() event

I'm using .blur() function to execute some code every time a text field loses focus (also when its value doesn't change). Now I need to add some logic that must be executed only when text field value ...
0
votes
2answers
29 views

save clicked element´s path in variable

my html: <form action="submitPage.php" method="post" onsubmit="savePathInVar();"> <table> <tr> <td><img src="<?php echo $path; ?>" ...
0
votes
1answer
44 views

how to get image´s path with onclick and save it in a variable

here is my html: <form action="submitPage.php" method="post" onsubmit="savePathInVar();"> <table> <tr> <td><img id="' . $id . '" src="inventory_images/' . $id . ...
1
vote
1answer
25 views

How to properly make D3 event listener?

I have code that draws a bunch of hexagons but I need them to appear white and do some other stuff when I mouse over them. Why isn't the event listener working and what do I need to do to ...
0
votes
0answers
18 views

Create element on mousedown and immediately be able to drag it

Im trying to create an element (a div for example) when I do on mousedown. Up to that, no problem. But what I want is to be able to drag that element while I'm with the mouse down. Any one?
1
vote
1answer
11 views

Is events.EventEmitter.call(this) required when creating a custom EventEmitter?

There are a lot of example not using events.EventEmitter.call(this) in custom event emitter constructors, while other are using it (official documentation): var events = require('events') , util ...
0
votes
5answers
88 views

Getting parent element in jQuery

I have tried to get the parent element's id of the clicked element. I have tried this $(window).click(function(event) { alert("Clicked on " + event.target.id + ". Its parent is " + ...
0
votes
1answer
27 views

What javascript objects have addEventlistener in their prototype?

I know of the following: Element.prototype.addEventListener Window.prototype.addEventListener Document.prototype.addEventListener Any others?
0
votes
2answers
51 views

Using Javascript/jQuery to trigger event when textarea rendered

I have a JSF page where I'm trying to tie the text in specific paragraphs to the contents of a set of textareas. Getting the content to change when a textarea changes is dirt simple using onchange ...
0
votes
2answers
28 views

PhoneGap user defined native event

PhoneGap has pre-defined event (deviceready, pause, resume, online, etc), and developer can add listener on it. is it possible to define my own event and fire from the native thread, then the js ...
0
votes
0answers
20 views

EventEmitter calls the handler even after removing it

I have two classes named say A and B both has two methods named start and done. I create instance of both the classes. var a = new A(); var b = new B(); I bind start event on b and done event to a. ...
2
votes
3answers
26 views

Javascript removeEventListener not working - event listener remains

I've looked at a few ways around this, but I can't really tell, my code is: lb = document.body; if(lb.addEventListener){ lb.addEventListener('keyup', function(event){ ...
0
votes
1answer
22 views

Why am I unable to get the alt key pressed?

I am trying to get the Alt key to set a shortcut as Shift+Alt+A orCtrl+Alt+A but when the `Shift or Ctrl key is pressed I can't determine whether an Alt key was pressed or not .The following code ...
0
votes
0answers
25 views

Why can't I bind events to the elements in a namespace?

I have the following code and I want to listen to a mouseclick event but nothing will happen in this case why? function Obj(tag){ this.el = ...
0
votes
1answer
18 views

Overriding parent prototype method for event handling

I am using the following code jsFiddle to work with form fields and events. I have previously asked two questions regarding this and they have helped me tremendously. Now I have a new ...
0
votes
1answer
21 views

Javascript support for touch without blocking browsers pinch support

I have a little web gallery that I added swipe navigation to for mobile browsers. I did it with pretty simple touchstart/touchmove/touchend event tracking. The problem is that when I try to pinch ...
1
vote
1answer
46 views

Blur event triggered on focus

I am using the following code jsFiddle: function Field(args) { this.id = args.id; this.name = args.name ? args.name : null; this.reqType = args.reqType ? args.reqType : null; ...
0
votes
1answer
38 views

Why is event in firefox undefined when defining a pseudo event with MooTools?

I am trying to define a pseudo event with MooTools. It works in chromium, but not in firefox. Both browser are the newest stable version. Here is my event: DOMEvent.definePseudo('ctrl', ...
0
votes
3answers
35 views

Event Handling in Javascript using Prototypal Inheritance

I am trying to enable Event Handling in JavaScript. This is what I have so far: function Field(args) { this.id = args.id; this.name = args.name ? args.name : null; this.reqType = ...
0
votes
2answers
55 views

Youtube/vimeo iframe won't play in firefox

I am embedding a youtube/vimeo video onto my site with an iframe. <iframe src="http://www.youtube.com/embed/{$entity->getYoutubeVideoID()}" ...></iframe> The ...
1
vote
0answers
29 views

Mimicing event inside callback function from external of callback

Upon a given event, I wish to trigger a given action. In particular, I would like to hide an editor by performing tinymce.editors['myID'].hide();. Turns out this method is only available within the ...
0
votes
0answers
30 views

waiting for event to be handled to continue executing the function that has triggered the event

i'm looking for an elegant, efficient solution to my problem : i have this webapp with many components; one main component include many additions that will grow/evolve with time this main component ...
4
votes
3answers
74 views

How can I check that a window has been closed in JavaScript?

For example, I have JavaScript like this: windowHandle = window.open('http://www.irt.org/','testWindow','height=200,width=200'); I would like to check whether the 'testWindow' is closed and run a ...
0
votes
1answer
51 views

How do I get element.onclick working in Firefox?

I cant figure this out for the life of me. I've dynamically created an element and i need to add a click event to it though it needs to work in all browsers right up to ie7. var bottle = ...
0
votes
0answers
26 views

onblur replacement in case of multiple input elements

I've got a webpage with some text structure. I want the structure to be a editable in an "in place" manner. In some cases it's fairly easy (at least so far). I make onclick event that sets display: ...
0
votes
1answer
23 views

problems with paste event and iframe on internet explorer 7

I've got a WYSIWYG editor, based on JqueryRTE (code.google.com/p/lwrte), which uses iframe as a main object and enables a few means of formatting. Still I need to sanitize pasted text, because users ...
0
votes
0answers
16 views

Leaflet stop dragging event, start on another one.

Good day, Currently I am working on a project in Leaflet.js a mapping solution. This works great. There is an 'marker' object which you can place on the map and enable dragging for. So you can drag ...
1
vote
3answers
30 views

Run a function at the first keypress event on an input

I have an input element with an onkeypress event that runs a function, change(). The problem is that the function doesn't run for the very first keypress. For example, I have to type 55 instead of 5 ...
0
votes
1answer
48 views

Adding event listener to HTML span tag

I have a shopping cart in an ecommerce and when the value of the shopping cart alters a banner appears different for each value. The js will just run and show the correct banner when the page reload ...
3
votes
3answers
62 views

Trigger click on iframe

I'm aware of the same-origin policy... just getting that out of the way. Anyway, I have a slideshow (slide.js) that has some embedded videos in it. When the user clicks the video, I want the ...
0
votes
0answers
24 views

Need help creating onscreen navigation buttons that maps to keyDown functions

Im working on a vertical game, but I dont have a clue about onscreen touch controls What must I do here for virtual on-screen controls to map the buttons to the keyDown listeners? I want to add ...
0
votes
1answer
59 views

adding javascript settimeout function

I am not a coder/programmer and I found a script I would like to use and I used my wysiwyg editor to try to make it work the best I could, but it still does not work the way I want maybe someone could ...
1
vote
2answers
58 views

Setting event handlers to DOM objects

I was looking for the most proper way to attach DOM events avoiding browser compatibility issues and found that the Mozilla developers site states: The old way is to just assign it like this: ...
2
votes
1answer
47 views

Misalignment of tile in puzzle game HTML5

I am required to develop a sliding puzzle game in HTML5 using div tags and document object model. I have managed to get a working version but I'm having misalignment of tiles issues. Please have a ...
-2
votes
1answer
43 views

How can I know when a new div is loading into my webapp

I am developing a webpage with different divs which are located in different files. I have my index.html with several links. Every link is placing a different div from a file into the body of the main ...
0
votes
1answer
52 views

Ask if event has listener in jQuery

A function triggers an event and passes on some data which then will possibly be processed by a listener. If not, the function wants to process the data by herself. Well, as I don't know if the ...
2
votes
3answers
72 views

Javascript “this” overridden by event listener [duplicate]

I am probably doing something wrong but I found some interesting behavior when trying to apply some object oriented programming to Javascript. Consider the following function Bug(element) { ...
0
votes
1answer
21 views

How to handle an event trough multiple subview-levels in BackboneJS

Is there a handy way to throw/catch (custom) events from/to multiple levels of child/parent views in Backbone? Let me explain my situation. I'm catching "keydown" events and check if some ...
1
vote
1answer
15 views

JS pageX and pageY take the coordinate plus the margin of relative position div?

I have a div that I want to center so I use margin-left: auto; margin-right: auto; position: relative; That's the easiest way to center I admit, but when I want to use event.pageX and event.pageY ...
0
votes
0answers
18 views

Javascript/GWT - Can multitouch events be captured on a touchpad?

Can multitouch events (two, three fingers) be captured on a laptop browser (ex. Chrome) when using the touchpad, with Javascript / GWT ?
0
votes
1answer
56 views

How to get dimensions of dynamically inserted video on ipad? JavaScript

I'm dynamically inserting an html5 video tag with unknown dimensions onto a page. I'm getting the dimensions with the loadedmetadata event which works like a charm on all browsers. However, from what ...
0
votes
1answer
39 views

OnDataChange event for Google Spreadsheet in JavaScript?

I have an application that extracs data from google spreadsheet (embedded via iframe) to update a model of a single page app written in Angular + ruby in the backend. I want to update the Angular ...
0
votes
0answers
36 views

how to change focus of touchmove without releasing finger in jquery/javascript

i've some images in a div, these png images are draggable and are not rectangular,so when i want to drag an image below the transparent area of the image i've to fetch the event and deliver to the ...
0
votes
5answers
35 views

How to attach an event at runtime to all html elements of a certain type using css?

Is it possible to attach an event to an html tag with css: input [type="text"] { onkeypress (dojob(this)); }

1 2 3 4 5 60