0
votes
1answer
18 views
Javascript Question - One of my effects stopped working after adding another javascript effect.
I am new to all of this so sorry if this is a stupid question.
I had previously created a lightbox affect for my contact form and had it working great. Clicked contact, lightbox popped up with the …
0
votes
2answers
51 views
What is the OO approach to accessing jQuery plugin methods from my plugin HTML?
I started with this question: http://stackoverflow.com/questions/1875693/multiple-javascript-gadgets-per-page . After reading up on how to build a jQuery plugin I've modified my OO JavaScript object …
0
votes
2answers
27 views
Dynamically creating a textbox with a javascript onkeyup event that takes parameters
What I have is a single textbox. If the user hits the maxlength of it, I want to create a new textbox and then change focus to it so they can continue typing.
To accomplish this, I am trying to …
0
votes
3answers
45 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 …
0
votes
3answers
50 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
25 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
2answers
55 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 …
1
vote
3answers
49 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
85 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
4answers
60 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
46 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
1answer
38 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
1answer
19 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
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
51 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', …
