Tagged Questions
2
votes
3answers
54 views
How do I find which jQuery event is being called when I click a textbox?
I've inherited a piece of software and in it is a form where I cannot figure out where the click event is in jQuery.
When the user clicks in a textbox on the form, the checkbox next to it toggles ...
3
votes
3answers
61 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 ...
1
vote
1answer
35 views
Handler on DOM elements in GWT
I want to add the handler on the buttonelement and i have implemented it as follow. Please help me in resolving the error in this code. I do not want to add handler directly on the button widget.
...
0
votes
0answers
17 views
Chrome is firing mouseout events even though HTMLElement was removed
I have noticed a problem that only happens in Chrome. If you are listening to mouseout events on an element (such as to add a hover effect on something), and some action on the element causes the ...
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 ...
0
votes
0answers
35 views
What event fires when an element is added to the DOM and has been styled and loaded?
I am dynamically adding an element (created by document.createElement( "div" )) and I want to know when the element is fully visible, styled and added. I know there's the event DOMNodeInserted, but is ...
0
votes
1answer
70 views
Understanding JavaScript Scrolling & iFrames
THE PROBLEM
I have a Flash SWF being loaded into a PHP page that then is being loaded into a Facebook canvas. The FB page has content in the right side ad area that creates a vertical scroll bar ...
0
votes
1answer
29 views
Input loses event after include a tr
I'm using the .on() method to bind the following events to a input:
$('table.transactions tbody input').on({
"focus": function (e) { $(this).closest('tr').addClass('active'); },
"blur": ...
0
votes
4answers
40 views
How to append content from one element to another on hover event
So I have four links with titles that I want to get the attribute values from and append to an external, empty div.
Here is the jsFiddle
The part I'm having problems with is the javascript
$('li ...
1
vote
3answers
46 views
getElementById not selecting element in Javascript
I am trying to create an event based on the DOM for testing my Javascript skills, anyone knows why this isn't applying to the element?
function getButton(){
var getButton = ...
1
vote
1answer
25 views
Storing mousemove event argument in global variable may cause performance problems?
I'm storing mousemove event arguments in variable, can it cause performance problems?
window.document.addEventListener('mousemove', function(e){
window.mouse = e;
});
0
votes
0answers
52 views
Allow Clicking through element but still register hover
Heres my problem: I have an a tag that I am using as an arrow that you can hover over to change the scroll of a div.. That part works. However, I then want you to be able to click through to the other ...
5
votes
1answer
126 views
what order do events fire on radio button click?
I know this is different between browsers; e.g. If I attach a function to the onclick and onchange event of a radio button, then click on it, Chrome fires onchange then onclick, while Firefox does the ...
2
votes
1answer
164 views
jQuery .on() Method Not Working In Chrome (but does in IE & FF)
I have jQuery code that executes fine in both IE 9 & FF 19, but doesn't seem to work properly in Chrome Version 25.0.1364.172. Using jQuery 1.7.1
I have 2 dropdown lists and a button. On initial ...
1
vote
1answer
48 views
Binding keypress to contenteditable label
I want to bind a keypress event to a contenteditable <label>. This works as expected in Firefox, but in Chrome my bound function is not triggered by typing into the <label>. Note that this ...
0
votes
2answers
181 views
Selecting div in li element and do action on li-click
I think I have an issue with selecting. Actually I have a div conataining two other divs of thes same size (front and back). I want to create an on-click event so that it's like having two sides of a ...
-1
votes
2answers
97 views
Can not establish a connection between background page and content page
I am writing chrome extension and I am trying to send an message between background pages and content pages.
Problem is that the connection is never established. I even copied the code from google ...
0
votes
4answers
50 views
Registering an existing event to ajax loaded DOM?
In my homepage , I have this button.
<button class="test">test</button>
And in my current code I have this script
$('.test').on('click',function(){
alert("YOU CLICKED ME");
...
0
votes
1answer
51 views
Do not preventDefault when a key is pressed
I'm using window.history and intercepting link clicks:
document.querySelector('a[data-history]').addEventListener('click', function (e) {
e.preventDefault()
// window.history stuff
})
The ...
2
votes
3answers
89 views
jQuery child activating parent click event
I'm having issues preventing a child element from activating a parent click event in jQuery. I've Google'd around and have stumbled upon a couple different solutions, none of which appear to work for ...
0
votes
1answer
49 views
Is there a JQuery event that will be called when a dynamically generated table is rendered?
I have a datagrid control I am working on that uses a total of 4 tables to generate fixed column headers, column headers, fixed cells and cells (top-left, top-right, bottom-left, bottom-right with the ...
0
votes
4answers
40 views
Accessing a text area within a form using
Please could you advise on the following:
I have a registration form, and within that a text area
<form id="register" name="register" method="post" action="register.php">
<textarea ...
-1
votes
2answers
86 views
document and image onclick priority
I have a document. I can't change it.
It has an image.
Image has onclick event (imageCallback).
Also I have a bookmarklet. I want to do document.onclick = documentCallback;
And I want to make ...
4
votes
2answers
97 views
Should I remove event handlers from element brefore removeChild?
Say, I have an element as <img id="foo" /> and attached some events, e.g click (not inline onclick !!!).
// somewhere i wrote
foo.addEventListener("click", clickHandler, false);
...
// ...
0
votes
3answers
83 views
DOM Listener on Static Table Change
I'm trying to add listener to my table in order to call another javascript function.
My app is a simple upload script, when user chooses a file it uploads and creates new row in the table. Therefore ...
0
votes
1answer
46 views
Catch Event or something when page adds/loads new images?
When the website first loads i easily iterate through all images with $('img')
But if the website loads new images, especially like google/bing image search, is there some way to catch an event for ...
0
votes
0answers
53 views
Force dom to update onclick attribute in firefox 3.5.3
Here is the problem i am facing:
i have an input to sumbit a form with a function executed in a click event.
This function will disable the event click, launch a jquery dialog box.
the dialog box has ...
0
votes
1answer
26 views
Is it up to the browser plugin to decide if an event should “bubble” further up the DOM?
I've tried the VLC browser plugin and I've been quite satisfied with it. But when I click inside the VLC frame, the click event is not delegated to the browser after VLC eventually has handled it, ...
3
votes
0answers
32 views
Detecting incoming window.location for onunload event [duplicate]
Possible Duplicate:
How can i get the destination url in javascript onbeforeunload event?
Is there a way to identify the pending navigation uri from within an onunload event? I'm wanting ...
1
vote
1answer
49 views
Applying event handler on newly added element
This is the the code i am trying in jquery.
$(document).ready(function()
{
$("#button1").bind("click", function(){
$("tr:contains('Clothing')").after("<tr><td colspan='4' ...
1
vote
4answers
58 views
Wrapping content elements causes inline scripts to fire
I am writing a jQuery plugin. In this plugin I wrap the existing BODY contents in a DIV and hide them.
var $originalBodyContents = $('body').wrapInner('<div>').children('div').hide();
The ...
1
vote
2answers
39 views
Is there a way to trigger DOM events from a program running outside the browser?
I have my own web app running in a browser. I want to trigger DOM events from a program running outside the browser. What is the best way to setup this interaction? Is my best bet to send keystrokes ...
0
votes
1answer
101 views
mobile safari scroll page keyboard dismiss
We have an HTML5 webapp that needs to work on the iPad. The problem is that the page (body) scrolls up when the keyboard opens. When the keyboard is dismissed, the page remains in the scrolled up ...
1
vote
4answers
279 views
jQuery change event not firing from keyboard?
I have this dropdown, I want to alert/log something when the value in it is changed. What happens is when I click the dropdown with mouse, and selected any other value, the change event is fired. But ...
0
votes
1answer
124 views
TextInputCell: Tab not working properly in IE9
I need a tabbing in celltable. So, I have applied a tabIndex to TextInputCell by using template.
interface Template extends SafeHtmlTemplates {
@Template("<input type=\"text\" value=\"{0}\" ...
1
vote
1answer
98 views
Meteor: Is there a way to be notified when a template is take off the dom?
The template has a destroyed event but that event is call when the template is no longer in the dom.
I want to access the template before is take off the dom.
I want to close a tooltip before i can ...
1
vote
1answer
223 views
Checkbox click event execution order and render
I come into an interesting issue with the code below:
<html>
<head>
<meta charset="UTF-8"/>
<script src="jquery-1.3.2.min.cache.js">
</script>
...
1
vote
3answers
2k views
jQuery click event on parent, but finding the child (clicked) element
let say I have a parent element which has so many nested child elements inside of itself:
<div id="p">
<div id="c1">
<div id="c2"></div>
<div ...
0
votes
0answers
61 views
Javascript tracing events
Is there a way to trace the events that are triggered at a given moment?
I'm thinking in a script like Visual Event 2
I'd like to have all the events with its linked function in the log.
Thanks in ...
0
votes
2answers
131 views
JS - Resizing an Iframe based on it's content, without using timeout
I have an Iframe that communicate with it's parent (on other domain) using window.postMessage.
on the parent window I have a resize method that can be called from the iframe.
I want to add code to ...
2
votes
1answer
107 views
How can I manipulate dynamically created elements wth jquery?
I am a jquery newbie and i am creating boxes with jquery and then "deleting" them. But I want to use the same code to delete the box in the scope of the created element and the scope of a already ...
0
votes
1answer
103 views
change auto-complete option inside its select method
Here's my code:
$authorizedRow = $('.authorizedRows').html()
$("#name").autocomplete({
source: "userlookup.cfm",
minLength: 3,
select: function(e, ui) {
...
0
votes
2answers
507 views
Backbone events not binding to dom element
In one of my views I have:
events: {
'click .tab': 'doSomething',
},
then:
doSomething: function(){
...
},
This is a recurring structure in my views, but for some reason the ...
0
votes
0answers
114 views
Catch window open event using javascript
I decided to ask the same question since it has not answers.
See: Catch flash opening window event
Does anyone know how latch onto the event when the browser is told to open a new window or tab? The ...
0
votes
1answer
72 views
DOM event to java via JSON
Hey I'm trying to send a DOM Event (a mouse click captured on a FF extension) to a java webservice. It would be really useful if I could just use json and a bit of magic to jsonify the event and then ...
0
votes
5answers
306 views
javascript - How to detect if not onmouseover?
I have a script that makes the element display = block using onmouseover
<script language="JavaScript">
function aaa()
{
document.getElementById('cat').style.display = "block";
}
...
3
votes
2answers
2k views
Javascript Error: Uncaught ReferenceError: edit is not defined
I am calling a function named edit from an onclick event as follows.
<script type="text/javascript">
$(document).ready(function () {
...
$.each(data, function (key, val) {
...
...
0
votes
3answers
112 views
why does .prepend() work only once?
I'm making a todo-list application, i use jQuery in it and when the user hit the Add button a new task get appended to the tasksWrapper div, but the problem is, it only happen once. When i press the ...
0
votes
2answers
818 views
Target=Blank link with OnClick JavaScript
Why the TARGET _BLANK parameter does not work, when there is onClick parameter?
The onlick is google event script. When I add onclick to this link, it opens inside the frameset.
<a target=_blank ...


