1
vote
6answers
578 views
How do I unbind “hover” in JQuery?
$(this).unbind('hover');
this does not work.
0
votes
0answers
8 views
Event driven with Java and Javascript?
I am trying to perform some computations on a server. For this, the client initially inputs some data which I am capturing through Javascript. Now, I would perhaps make a XMLHttpRe …
1
vote
3answers
36 views
Unit testing jQuery document.ready function
Hi all:
I have a question in regards to unit testing jQuery's document.ready function().
Currently I have 2 scenarios in my code:
function myFunction()
{
$(document).ready(f …
1
vote
1answer
54 views
why is this jQuery .animate call so slow?
Hi All I have a pretty straight forward function
enableModule : function(moduleName){
var module = $('div#'+moduleName);
console.log('enabling '+moduleName);
…
0
votes
1answer
154 views
embedding flash in rich text editor
I've been trying to embed a flash widget inside a rich text editor (http://code.google.com/p/lwrte/), by adding an tag to the iframe's HTML using mozilla's .insertHTML function (h …
2
votes
1answer
58 views
Which BDD framework for JavaScript do you use?
I'm developing large application using ExtJS framework. Because it grows too fast, I realized that this might be the time to start doing tests.
I want to go for BDD technique, I f …
1
vote
3answers
18 views
No Array.filter() in Rhino?
Why can't I use Array.filter() in Rhino?
The code is like this:
var simple_reason = ["a", "b", "c"];
print(typeof simple_reason.filter);
var not_so_simple_reason = new Array("a" …
0
votes
3answers
36 views
jQuery/Javascript confirm coming up twice
For some weird reason i'm getting my confirm box coming up twice. here is my code:
$(".DeleteComment").live("click", function(){
var CommentID = $(this).attr("rel");
var …
2
votes
7answers
51 views
How to verify if the Web Service caller is my web site?
For security reason, i need to garantee that only web client running an specif web site can access the web service. I'm doing verification over the domain request only, but i need …
0
votes
1answer
33 views
Firefox doesn’t execute one dynamically loaded <script> element until another is loaded
I'm implementing Comet using the script tag long polling technique, based on this page. Following on from my previous question, I've got it all working, except for one annoyance, w …
7
votes
6answers
213 views
In JavaScript, why is [ ] preferred over new Array(); ?
I remember reading somewhere (I think it was in one of Crockford's papers) that using an array literal [] is better than using the new Array(); notation.
But I can't really rememb …
1
vote
1answer
19 views
window.beforeunload called twice in Firefox - how to get around this?
I'm creating a popup window that has a beforeunload handler installed. When the "Close" file menu item is used to close the popup, the beforeunload handler is called twice, resulti …
2
votes
4answers
142 views
Why won’t this JavaScript (using document.open and document.write) work in Internet Explorer or Opera?
I desperately need some help on this one.
I've created a <script> that closely parallels, and reproduces the problem of, another more complex <script> that I've writte …
2
votes
2answers
25 views
search engine for javascript or / and css by source code snippets
this is not a programming question as such but still...
does anyone know of a service / spider / crawler that can fetch javascript or CSS resources embedded through standard metho …
4
votes
12answers
188 views
When NOT to use AJAX in web application development?
I'm building a web application with the Zend Framework. I have wanted to include some AJAX type forms and modal boxes, but I also want my application to be as accessible as possibl …
