0
votes
1answer
23 views
Javascript disable/enable event and $addhandler
I am fairly new to JScript and I am looking for a way to subscribe to the event when a textbox is disabled or enabled. I am creating a AJAX Extender Control and I am subscribing t …
0
votes
0answers
16 views
onclick event in select html not working in safari
i have a asp.net dropdownlist control with onclick and onchange event javascript.
both works in IE,mozilla, Opera and google chrome but not in safari.. when i remove onclick, oncha …
3
votes
5answers
65 views
detect variable change in javascript
Hi!
Is it possible to have an event that fires when the value of a certain variable changes?
Thanks!
0
votes
4answers
62 views
JavaScript KeyCode Values are “undefined” in Internet Explorer 8
I'm having trouble with some JavaScript that I've written, but only with Internet Explorer 8. I have no problem executing this on Internet Explorer 7 or earlier or on Mozilla Firef …
1
vote
2answers
99 views
+150
Stop the browser “throbber of doom” while loading comet/server push XMLHttpRequest
(This question is similar to this one, but it's for using XMLHttpRequest instead of an iframe for Comet.)
I'm starting an async long poll like this:
var xhr = new XMLHttpRequest( …
2
votes
2answers
58 views
Document Click triggered on ‘enter’ form submission
I'm having trouble understanding why a click event binded to the document would be triggered through an 'enter' form submission. Here's the test page I'm looking at:
<html>
…
1
vote
3answers
36 views
Javascript Event Between onFocus and onChange
I'm working a web page where I'd like to run some Javascript code when a user alters text in a given input field, but I can't figure out which event to trap (assuming one exists) t …
0
votes
4answers
58 views
jQuery attach function to ‘load’ event of an element
Hi,
I want to attach a function to a jQuery element that fires whenever the element is added to the page.
I've tried the following, but it didn't work:
var el = jQuery('<h1&g …
0
votes
1answer
30 views
Validating radiobuttons with an “other” textbox item
I have a HTML form with a couple of radio buttons. The first few are normal radios, but the last one is associated with a text box. I'd like to run some JavaScript validation to wa …
0
votes
3answers
26 views
Getting AJAX content into the DOM or registering an object with jQuery via an onClick event?
I have a code setup something like below, the image is part of a block of HTML and is being loaded with AJAX so I can't get a direct handle on it using it's class or id, so I'm pas …
0
votes
1answer
22 views
How do i dynamically adding controls in asp.net with JavaScript or JQuery.
I have a field with a 1:N relationship with some other fields. I need the user to specifier how many elements are related to that particular field to enable me create the right amo …
0
votes
3answers
35 views
decimal places in JS
I have two form inputs which display the calculated invoice subtotal and total of a form.
The problem I'm having is it's not displaying 2 decimal places.
Subtotal function
f …
2
votes
1answer
58 views
Is there a profitable way to record user actions in textarea?
I need to send bunch of commands to the server on timer - like:
put(0,"hello")
del(4,1)
put(4," is around the corner")
so I need to monitor and record all of the user input and …
0
votes
1answer
58 views
JQuery UI; Stop propagation of selectable events
Basically I am using jQuery ui's selectable functionality on a ul, but the ul will often times have a scrollbar, and this scrollbar becomes unusable in Webkit browsers since when y …
0
votes
2answers
102 views
Responding to the onmousemove event outside of the browser window in IE
In Internet Explorer 7 body onmousemove or document.onmousemove events only seem to fire while the mouse is inside the browser window, not when it's outside. Yet in Firefox the onm …
