0
votes
3answers
39 views
How do I make an HTML button not reload the page
I have a button (< input type="submit"/>). When it is clicked the page reloads. Since I have some jQuery hide() functions that are called on page load, this causes these elements to be hidden …
1
vote
2answers
42 views
How to programmatically change the OnClientClick event and call it?
I have a ListView that contains playlists. If the user wants to edit an album, they click the edit link and it allows them to remove or add songs to the playlist. If the user wants to Save a new …
0
votes
3answers
47 views
jQuery selectors help
I have the following HTML
<ul class="main-navigation">
<li class="left"> </li>
<li class="normal">Home</li>
<li class="normal">Internet</li>
…
0
votes
2answers
17 views
Javascript pageLoad not executing in a master page
What causes the following pageLoad to not execute in a master page? The first alert executes as expected, but the pageLoad function is not being invoked. How can I use the function within a …
1
vote
3answers
517 views
Enter key press behaves like a Tab in Javascript
I'm looking to create a form where pressing the enter key causes focus to go to the "next" form element on the page. The solution I keep finding on the web is...
<body …
1
vote
3answers
45 views
Event listeners in JavaScript with parameter
How can I add an event listener (addEventListener(),attachEvent()) that also accepts a parameter?
The parameter is passed as the element's custom attribute like:
<img src="icon.gif" alt="Test …
0
votes
2answers
69 views
Is this a IE8 or jQuery’s bug?
<option> doesn't respond click/contextmenu events in IE8?
Here is all the code to verify it locally:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
…
0
votes
1answer
35 views
uservoice javascript widget - How to popup feedback form automatically on page load
In an HTML page, how can I know when a externally loaded javascript object is defined and ready for methods to be called on it?
Problem specifics:
I'm using the uservoice feedback web application …
0
votes
2answers
162 views
Handling browser native click before dom:loaded
Hi,
I have an issue with Cross-Browser native events vs CallBack events.
I have an HTML link "Click Me" with a given href="". On dom:loaded I attach a function to this link (to do Ajax Stuff).
…
0
votes
4answers
58 views
javascript proplems
lets say i have a list of links:
<a id="home" href="#"> home link </a><br/>
<a id="list1" href="#"> some text1 </a><br/>
<a id="list2" href="#"> some text2 …
1
vote
3answers
41 views
Javascript: Is there a way to tell when a div has been added to an element?
Say I have a third party twitter widget on a page which keeps updating whenever there is a new tweet. Is there some way to figure out when a new div has been added to this widget? Is there an event or …
0
votes
2answers
33 views
jQuery check if onClick exists on element
I found the way to check if event exists on element. But it's not work on the events which is not delegated by jQuery...
When I try,
$("a").data("events");
for this.
<a href="#" …
1
vote
3answers
50 views
The proper way to handle popup closing
I'm looking for close event for popup. I've found one for XUL, but I need it for HTML.
Popup has closed property.
>>> var popup = open('http://example.com/', 'popup', …
0
votes
0answers
16 views
Firing contextmenu event in Firefox AddOn gives different Elements (XPCNativeWrapper vs. XULElement)?!
Hi folks!
Executing this JavaScript:
window.addEventListener("contextmenu", function(e) { afunction(e); }, true);
function updateReflectMenu(anEvent) {
var elemUnderMouse = anEvent.target;
…
0
votes
1answer
63 views
window.resize event firing in Internet Explorer
As you are aware, in Internet Explorer, the window.resize event is fired when any element on the page is resized. It does not matter whether the page element is resized through assigning/changing its …
