Tagged Questions

1
vote
1answer
20 views

jQuery extension (scope?) question

I have some confusion over a jQuery extension not working as I'd expect. I have the following function defined: $.fn.poster = function() { this.each(function() { self …
0
votes
2answers
41 views

How can I insert a character after every n characters in javascript?

I have a string: "The quick brown fox jumps over the lazy dogs." I want to use javascript (possibly with jQuery) to insert a character every n characters. For example I want to c …
0
votes
2answers
35 views

Check for bool in JavaScript

I've got the following jQuery (I've got it wrapped in the document ready function and all that, so please know I'm just showing you the inside of the function. .. var …
1
vote
3answers
26 views

Regular Expression for ASP.NET ID Using Javascript

I am trying to extract the word "need" from this string. ctl00_ctl00_ContentMainContainer_ContentColumn1__needDont_Panel1 I have tried [__]([.]?=Dont) This is using javascript …
0
votes
1answer
18 views

How do I properly create and manipulate checkboxes via javascript in Internet Explorer?

Hello, I'm writing a web app. Based on certain choices the user selects, it dynamically creates a number of checkbox input elements. For the sake of usability, they should be cr …
0
votes
4answers
47 views

Using jQuery to compare two arrays

Hi all, I have two arrays of JavaScript Objects that I'd like to compare to see if they are the same. The objects may not (and most likely will not) be in the same order in each a …
0
votes
1answer
37 views

How to find a function by function name

I need to find a function handler on the page by only using a function name. How can I do it in javascript? Thanks.
0
votes
4answers
30 views

How to Regular Expression match not having a constant at the end of a string (.net validator)

The item referenced in this question does not seem to work for me. I'm using the Regular Expression validator in .net I need to pass validation if the input field does NOT look li …
2
votes
3answers
79 views

What are the best practices for dealing with the Back Button in IE (and Firefox)

I know this in old issue but I can't figure out the best practices for dealing with the back button. I'm writing a web application with lots of data movement between the browser a …
3
votes
1answer
26 views

How can I prevent Backspace from navigating back in javascript?

This works in IE, but I cannot get it to work in Opera or Firefox. I want to prevent Backspace from navigating away if and only if the current focus is the SELECT dropdown. &lt …
1
vote
7answers
90 views

Question mark in JavaScript

I came across the following line in a JS function (it was an RGB to HSB color converter, if you must know) hsb.s = max != 0 ? 255 * delta / max : 0; I'm wondering if someone can …
1
vote
3answers
48 views

jQuery difference between live() and ready()?

What is the exact difference between live() and ready()? Edit: found that die() is the opposite of live()
0
votes
2answers
35 views

Get Character value from KeyCode in Javascript…then trim.

This is what i have now: $("input").bind("keydown",function(e){ var value = this.value + String.fromCharCode(e.keyCode); } If the e.keyCode may not be an ASCII character (a …
2
votes
5answers
55 views

is it good to use Wait cursor in websites?

Hi all. Just wanted to ask - is it good to use Wait cursor in websites? on heavy loading pages.. we dont generally see it used with websites...(please share some if u have seen a …
0
votes
4answers
73 views

What is wrong with this JavaScript code?

self.location = 'cache:' + self.location I want to redirect from "[URL]" to "cache:[URL]". I just want this code to work in Chrome browser.

1 2 3 4 5 1253 next
15 30 50 per page