1
vote
1answer
32 views
Javascript stop event flow
Hello,
first of all sorry for the strange title but I wasn't sure how to call this. I am trying to create a slideshow for images. Actually it's more like a fade in and out show.
…
0
votes
6answers
123 views
What is DOM Event delegation?
Update
Can anyone please explain event delegation in JavaScript and how is it useful?
Original:
Delegation in programming.
Can anyone please explain delegation and how is it use …
-1
votes
6answers
91 views
<textarea> what key was pressed with javascript
Hello!
I would like to ask somebody how i can determine what key was pressed in a textarea....
need to write a little javascript code.. a user type in a textarea and i need to writ …
0
votes
2answers
33 views
How can i get the destination url in javascript onbeforeunload event?
I've searched for hours, but I couldn't find a solution for this.
window.onbeforeunload = warn;
This doesn't work:
function warn (e)
{
var destination = e.href;
alert(d …
0
votes
1answer
19 views
JS and Prototype : mouseover influencing overlying element, why?
I try to create a mouseover Event on a div wich containt a link. When the mouse pass over the div the background is apply to all div correctly, but when the mouse is over the link …
3
votes
3answers
83 views
JavaScript: Very strange behavior with assigning methods in a loop
Consider this code below:
<a href="javascript:void(-1)" id="a1">a1</a>
<a href="javascript:void(-1)" id="a2">a2</a>
<script type="text/javascript">
…
0
votes
0answers
17 views
Impromptu plugin for Alert Boxes.
Hello.
When we use Javascript promt Box something like this
var ur_name = prompt("Enter Name");
We will have two types of values in this case:
Value entered by user.
Second …
0
votes
1answer
28 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 …
0
votes
4answers
53 views
OOP in javascript with callbacks
I want to close my window (just a div with position absolute that is draggable) when I click on the close link
This is my code
function ApplicationWindow() {
this.window = $( …
0
votes
2answers
54 views
Running an action when mousing over (and leaving) an element (or its child elements)
Imagine I have the following elements:
+------------------+
| |
| +----------------+
| | |
| | |
| +----------------+
| …
1
vote
1answer
26 views
Javascript event when page is actually shown in a web browser
Hi,
I'm developing a web site which shows different images in a loop using cross fading. Now, I want this loop to start no earlier than the page is actually shown by the user. The …
0
votes
1answer
14 views
add a dropdown menu on clicking on a text in DOM
Hi,
Is there a way i can popup a dropdown menu on a webpage when i click on a text? I have a text that is highlighted. The text is highlighted using span tag. so now i have added …
1
vote
2answers
54 views
How to get javscript event to fire only when the background is clicked (and not other elements)?
I'm trying to write a web app which replaces the context menu (right-click menu) with my own customized ones. I want it so that when the user clicks on a table row, they get one c …
0
votes
3answers
53 views
Pass parameter to callback function
my code
// do ajax request and get JSON response
for (var i = 0; i < data.results.length; i++) {
result = data.results[i];
// do stuff and create google maps marker …
0
votes
1answer
23 views
stopping key event bubbling in safari 4 windows
In safari 4 windows, it does not seem possible to stop some key events from bubbling up to the browser in javascript.
This guy got pounced on for trying to stop F5 (a dubious desi …
