Tagged Questions

1
vote
4answers
17 views

Jquery binding event.

<img id="sun" href="logo.jpg"/> How do I use JQuery to bind it so that when "sun" gets clicked, something happens? I just want bind onclick to sun.
3
votes
5answers
72 views

Whats a good argument for/against using inline javascript within the html body tag?

One of my co-workers is thinking that it is simpler to just include the document.ready() calls (MULTIPLE) for jquery anywhere in an html document, rather than trying to have them all in the head, foot …
1
vote
1answer
18 views

Javascript variable scope (cross site scripting)

I am writing a javascript widget. I am declaring some variables which will be pasted in the host page. the script to be pasted into pages looks something like this <script …
1
vote
4answers
82 views

Was it a big mistake of JavaScript language inventor to use function instead of a shorter word ? [closed]

It seems that it would be wise to use def, fn, or fun for function definitions similar to Ruby or other succinct languages. Now that it's too late to change things due to potential compatibility …
1
vote
1answer
15 views

Can I put google map functions into a closure?

Hi I am trying to write some google map functionlity and playing around with javascript closures with an aim to try organise and structure my code better. I have the following code: var gmapFn ={ …
4
votes
5answers
20 views

How can I stop an IFrame reloading when I change it’s position in the DOM?

Is there any way to stop an Iframe re-loading it's contents when I change it's position within the DOM? Simple example: <script type="text/javascript"> function moveiframe() { var dest = …
0
votes
0answers
23 views

JavaScript DEFLATE or LZW encoder implementation

Are there any open source DEFLATE encoder or LZW implementations for JavaScript? I need it to generate a binary format on the client-side that requires either DEFLATE or LZW. There's [a relevant …
0
votes
1answer
17 views

How can I use a JSP to create a dynamic Javascript file?

I'm using a Jboss5/Spring/Struts implementation, and I'm not familiar enough with JSP technology to know how to do this. Is this even possible?
1
vote
2answers
17 views

JS/jQuery - Displaying results based upon user input

Hey all, I've been thinking about this project I've taken on, now what I am after is a form that will have a list of questions, simple yes/no questions that when answered and submitted it will …
3
votes
2answers
39 views

Is this port of Prototype to JQuery correct?

We have code that will run if the user is idle for a certain amount of time. (doStuff resets a countdown) Existing code in Prototype: Event.observe(window, 'mousemove', function() { doStuff(); }); …
1
vote
2answers
15 views

How to keep an absolutely positioned element directly over the position of inline one?

This is a follow up question to http://stackoverflow.com/questions/2233097/how-can-i-stop-an-iframe-reloading-when-i-change-its-position-in-the-dom if you want the background. I have an inline div …
1
vote
4answers
37 views

Access dynamically named JavaScript Objects?

Hi, I have a JS Object: var testObj = new Object(); that has a property called volume1, so testObj.volume1 has a value. How would I go about accessing that property by using something along the …
3
votes
6answers
104 views

Raw javascript instead of jquery (example follows)

Hello, this is my first question here. I have the following jquery code: $(document).ready(function(){ $("a").click(function(){ $(this).parent("li").css({textDecoration: …
0
votes
0answers
13 views

JavaScript: Is there a way to get Chrome to break on all errors?

I am looking for an equivalent in Chrome to the "break on all errors" functionality of Firebug. In the Scripts tab, Chrome has a "pause on all exceptions", but this is not quite the same as breaking …
1
vote
1answer
22 views

Do (javascript) cookies work when outside of a webserver context?

Say i have a file test.html that uses javascript cookies. (a) When i access the file like this: http://mydomain.com/test.html cookies work fine. (b) But if i just double click the file to directly …

1 2 3 4 5 1694
15 30 50 per page