0
votes
1answer
16 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 ...
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
36 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
33 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 = ...
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 ...
4
votes
3answers
70 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
58 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
37 views

JQuery: how to re-order list items added by jquery?

I found here by searching a good way to re-order list items. $(".reOrder li").click(function() { var index = $(".reOrder li").index(this); if (index != 0) { // li item is not ...
0
votes
1answer
48 views

Can't add event listener at page load reliably

I can't seem to add these event listeners at page load reliably. Some of the listeners work from the beginning, but others only work after a few clicks. What might be wrong? Could the problem be that ...
-1
votes
3answers
90 views

Jquery is not showing results

I need to make a jquery to alert "are you sure you want to delete" when user click on delete I've been trying a LOT but didnt find any solution This is my deletemovie.php <?php ...
0
votes
1answer
71 views

Load data when the text box gets value from popup window

I have a text field. And a search button followed by the text box. When click on the search button, a new popup window will be opened. From the window I will select an id out of the populated ids. On ...
2
votes
1answer
82 views

How to catch F5 key pressed when the mouse is outside my page?

How can I catch the F5 key press when the mouse is outside my page? For example hovering on a scroll bar, or on an address bar, or on a menu etc. Because in this case e.which, which usually contains ...
0
votes
1answer
53 views

jquery scroll not being triggered

I'm trying to do a parallax scroll tutorial (http://net.tutsplus.com/tutorials/html-css-techniques/simple-parallax-scrolling-technique/). I cannot get the background position css to change via jQuery. ...
2
votes
0answers
29 views

Using touchstart fires click event after page redirect

I have a touchstart event that is being fired properly, but inside the event, there is a redirect to another page. On that page, in the same location as the button that was touched, there is a link ...
0
votes
1answer
26 views

How do I know which part of JavaScript is executed when some event is occurred

How do I know which part of JavaScript that is executed when some event is occurred in Mozilla Firefox?
0
votes
2answers
52 views

How do I listen on all array items?

I am collecting all images elements from the document var listen = document.getElementsByTagName('img'); which results in an array. Now I have to specify listen[0], listen[1], listen[2], listen[3] ...
1
vote
1answer
154 views

How to trigger contenteditable mousedown event?

I have a somewhat odd setup wherein a table cell is made contenteditable=true with a div placed over it to add some border effects without changing the dimensions of any of the cells in the table. ...
0
votes
1answer
40 views

Custom event listeners in an express route

What is the best way of handling custom event listeners in an express route. I'm probably doing it all wrong but here's what I have at the moment: module.exports = { get: function(req, res, ...
1
vote
1answer
92 views

How to add a property to `change` event in jQuery

I have a <select> box: <select id="myselect"> <option value="1">one</option> <option value="2">two</option> <option value="3">three</option> ...
0
votes
0answers
41 views

Any idea why pressing the end key fires the scroll event twice?

It fires twice. Pressing the home key fires the scroll event only once, like expected. What's up with the end key? (You can see it by going to this page, and looking at the console output. When you ...
0
votes
1answer
121 views

How to run function after press F5 (refresh)?

I tried to make some script that handle with event like "panel changes follow by URLhash". I had no problem with event on button or link but i had problem when i refresh page. My panel couldn't keep ...
0
votes
0answers
29 views

Read an “Event list” generated by a FaceBook page

I would like to include in my website a list of events taken from my facebook page. I have read a little the documentation I found in the developer section of Facebook, but after several attempts, I ...
1
vote
1answer
78 views

jquery events not bind to page items after $.load()

i have a base index page and a large repository page which i load needed elements from it with jquery.load() function for the sake of cleaner code and less size. after i load some parts in the base ...
0
votes
1answer
78 views

dojo.connect event object undefined

I connected a function via dojo.connect to a dojox.layout.ContentPane according to Dojo's documentation: dojo.connect(cp, 'onHide', function(e) { alert('test'); console.log(e); }); I expect ...
0
votes
1answer
363 views

Fabric.js canvas not catching mouse events on Google Chrome

Googled this a lot and didn't get any useful hint/solution. I have this simple html page including some css styles, jquery, jquery-ui and obviously Fabric.js; on document.ready i launch an ajax call ...
1
vote
2answers
47 views

How do I get the element containing clicked text in Javascript/Jquery?

I would like to replace the text on pages when I click on the text or even just replace the single word clicked on. I have tried a top down approach selecting all elements in the DOM, filtering out ...
0
votes
1answer
122 views

Event .on and .off

I am having a few issues with some events I am making. on my document.ready I have jQuery(document).ready(function () { //deal with clicks jQuery(".touchslider-prev").click( function() { ...
0
votes
1answer
295 views

d3.js - enable mouseup / mousedown but prevent click behavior

I have a data visualization here (the second one): http://mikeheavers.com/main/work If you click on the circles representing skill fields, it reveals inner green circles with the particular skills. ...
1
vote
1answer
57 views

How to interpret short drag events as clicks

Is there a concise way to have short-length, short-duration drag events be interpreted as click events? For example, I am using d3 and defining the following events that are supposed to capture a ...
0
votes
0answers
170 views

Remove JavaScript event, video.js

From the docs: myPlayer.removeEvent("eventName", myFunc); Seems pretty straightforward, but when I implement it, it doesn't seem to work. I want to have two or more chapters in one video and be ...
0
votes
0answers
152 views

jQuery event handler not working on AJAX-inserted elements

I have a page that displays a list of items a user has created. The (simplified) HTML for one such item is as follows: <div class="lesson-index-view"> <div class="header"> ...
0
votes
1answer
199 views

Dragging multiple layers in JavaScript with KineticJS

I'm trying to synchronize dragging of multiple layers. Example here: http://jsfiddle.net/e8Z3a/ var stage = new Kinetic.Stage({ container: document.getElementById('canvas'), width: 600, height: ...
1
vote
1answer
73 views

JavaScript - Avoid executing event's default action. `event.cancelable` vs `event.preventDefault`?

When I don't want to execute the default action that is associated with the event, I use function listener(e){ if(e.preventDefault) e.preventDefault(); /* Other code */ } But I have just ...
0
votes
2answers
28 views

when a link uses jquery to do an animatation prevent button being clickable again until finished

so I have a button at the side of a page that enables a user to go to the next slide (page) because the page size can be different widths this is calculated at the beginning so what the link does ...
0
votes
2answers
140 views

capture events in <select> list

I would like to know how to capture events within the dropdown list when a user click on a "select" dropdown list. I would like for example to intercept events when different elements of list are on ...
0
votes
1answer
60 views

How to set pageX for simulated javascript event

I'm simulating a mousemove event on a DOM node by: var e = document.createEvent('MouseEvents'); e.initEvent('mousemove', true, true) node.dispatchEvent(e) However in my mousemove callback which is ...
-1
votes
1answer
77 views

Mimicking jQuery .toggle() with minimum code?

As of jQuery 1.8, the .toggle() utility function is deprecated, and I'm looking across SO to no avail for a quickie snippet to mimic its functionality. I looked at a proposed solution here but I find ...
1
vote
5answers
105 views

How can I check that a key has been pressed?

Well I searched on google but still didn't found the answer I was looking for. I want to check if the user pressed a key, something like this - if(document.onkeyup) { // Some Stuff here } I ...
1
vote
1answer
54 views

Is possible to have an event linked to object's own parameter?

I have an object (lets say a circle) with specific parameters (x,y and radius). var circle = new Kinetic.Circle({ x: 100, y: 100, radius: 20 } The radius of the circle is ...
0
votes
0answers
72 views

call function ejb java in servlet with events

I want to call my EJB function, but the function is invoked when a particular event in my servlet enter code here NasabahDto test3 = new NasabahDto(); test3.setCode(code); ...
0
votes
1answer
403 views

Input Button onclick event not firing

I'm fairly new to Javascript and trying to build a simple photoviewer, slideshow application. I probably have errors/wrong practices in code that I don't know about yet. The event on slideshow button ...
0
votes
1answer
76 views

Closure events bubble down

I'm working on a web app in Google closure where the structure is something like this: App + Control Pane | + Search Box | + Search Button + Result Pane + Results + Next Page Link ...
0
votes
1answer
230 views

Node.JS : forEach vs for loop Asynchronous nature

for(var i=0;i<50;i++) { functionWrappingAsycfuncs(i) } var nums = [0,1...50] nums.forEach(functionWrappingAsyncfuns) functionWrappingAsycfuncs(i){ readFileAsync(i,function(){ ...
1
vote
1answer
107 views

Does targetTouches track touches moving simultaneously on multiple elements?

Suppose I've got four fingers down: two fingers (1, 2) in element A and two (3, 4) in element B. Suppose I then move finger 1 and finger 3. I should be looking at a touchmove event which will ...
1
vote
1answer
96 views

Javascript - Locate the item that triggered the event

I need to intercept all the events triggered on a page and to stop them; then I would like to send an XML message to a servlet that will return multiple clients. Once the message is received, the ...
1
vote
1answer
72 views

How efficient is it to dispatch lots of extra events in Javascript?

I am building a library which augments the standard JS input events. This means firing off a great many events for multiple touches at input sampling rate (60Hz) in the browsers of ARM devices. I ...
0
votes
4answers
326 views

How do I detect any change to a textarea?

I currently have bound my textarea to a couple of events which seems to work. However, the problem is that the events overlap and fire several times, which in turn reduces performance by a factor of ...
0
votes
0answers
84 views

Javascript - Key Events not firing for chinese character input

Here's the sample HTML with javascript.Keyboard events are firing when you type the numeric/english/special character.When you type the chinese charcter only the KeyDown event fires not ALL the ...
1
vote
3answers
142 views

addEventListener programatically is null

var button = document.createElement("button"); button.type = "button"; button.className = "button"; button.innerText = "OK"; button.addEventListener("click", function () { console.log("Hello!"); ...
12
votes
1answer
3k views

Backbone 0.9.9: Difference between ListenTo and on

I am trying to learn the new changes they did in Backbone 0.9.9. Currently I got problems to understand the difference between ListenTo and on: listenTo var View = Backbone.View.extend({ ...

1 2 3 4 5 8