0
votes
1answer
20 views

Specific number validation?

Is it possible to validate a field to a specific set of numbers using javascript? Say for example in a postcode field you can only enter four numbers to be be accepted e.g. 2747,2750, 2753, 2760, ...
3
votes
3answers
22 views

Uncaught typeerror: Object #<object> has no method 'method'

So here's the object 'playerTurnObj' function playerTurnObj(set_turn) { this.playerTurn=set_turn; function setTurn(turnToSet) { this.playerTurn=turnToSet; } function getTurn() ...
2
votes
1answer
23 views

Validate that a set is empty in node.js

var http = require('http'), url = require('url'), route = require('router')(); ... route.get('/{betNameType}', function(req, res) { var query = url.parse(req.url, true).query; if ...
0
votes
0answers
31 views

Set and Set Operations in Javascript

I'm looking for Set and Set operations in Javascript for intersection, union and difference instead of having to write them manually. Here's equivalent Java code: Set<Integer> toMerged = ...
0
votes
2answers
41 views

Javascript adding events to object properties on runtime

Let's say that we have an already existing code that has this object: function randomObject(id){ this.id = id; } An easy way to add events to e.g. id property would be like this: function ...
1
vote
4answers
94 views

Set entire page's css on click?

Does anyone know how I can change the entire document's CSS file on click? I've searched around but only found a few results on setting a class/ID's CSS, not the entire document. My website has two ...
0
votes
1answer
62 views

Cookies set by a javascript

Is it possible to get details of cookies that are SET by the javascript sent by a particular URL? How can I do it? For example, there is a URL www.abc.com and I want to know if this URL sends any ...
1
vote
1answer
108 views

How to set form option selected by value not by index

Here i have read how to set a form option selected by index <select name="sel"> <option value="o1">option1</option> <option value="o2">option2</option> ...
1
vote
4answers
104 views

JavaScript: Setting Nested object value by ID

I would like to know what is the best way to update the member of the multilevel object collection in JavaScript Here is the simplified version of my collection: this.Steps = [ { id: 1, text: ...
1
vote
3answers
74 views

cakephp functions like Set::combine in Javascript

Are there already some javascript functions that do the same as the cakephp functions Set::combine and Set::classicExtract on client side in the browser? ...
1
vote
2answers
118 views

Set styles dynamically in javascript

I have to set margin dynamically to an element. Earlier it was done by like following. var starLink = star.createChild({ tag: 'a', html: this.values[i], href: ...
1
vote
2answers
58 views

How would you use this script to get/set cookies? Small script

https://gist.github.com/4149633 Small script to get/set cookies in js, how can you use it? It was posted on Chris Coyier's CSS-Tricks site in the snippets library. What's the benefit of this script? ...
2
votes
1answer
323 views

Object.defineProperty get/set closure

Ok, I try to create new object this way: var src = {a:'a', b:'b', c:'c'}; var out = {}; for(var prop in src){ Object.defineProperty(out, prop,{ get: function(){ return ...
0
votes
0answers
22 views

duplicating sets in Raphaeljs

I need to duplicate the set "Set" into an array of the set ( so I will see duplication of this set multiple times). Then I will to transpose them to different points(no problem here). How do I do ...
5
votes
3answers
727 views

Node JS, traditional data structures? (such as Set, etc), anything like Java.util for node?

I'm loving node JS and, coming from a Java background, am interested in even trying it out for some projects where node may seem a bit of a stretch, such as a search engine project. One thing I've ...
0
votes
1answer
245 views

Node.js object array data joins

Are there any libraries or efficient techniques to perform array joins in node JS such that, A = [ { a: 1, b: 'a' }, { a: 2, b:'b' }, { a: 3, b: 'a' }, { a: 4, b: 'b' } ] B = [ { a: 1, c: true }, { ...
1
vote
4answers
323 views

PHP or Javascript:Check if cookie is set, if it is change content of a <li>

I am developing a website in which a cookie is set when the user logs in. Before the user logs in, a < li > shows the test "Client Login". This is fine, but what I want is to change the content ...
0
votes
1answer
95 views

backbonejs's set method could not work

I have already define a model use backbone: window.ResourceModel = Backbone.Model.extend({ default:{ 'relativeurl':'unknow', 'type': "unkonw" }, ...
0
votes
2answers
152 views

JavaScript for `set('pdf ppt tif tiff jpg jpeg'.split())`?

The Python idiom in the subject line set('pdf ppt tif tiff jpg jpeg'.split()) illustrates a fairly compact way to create a set of strings.1 I'm looking for a similarly compact idiom to create a ...
0
votes
1answer
3k views

d3.js - transform & transition, multiple lines

I have followed the instructions at: http://bost.ocks.org/mike/path/ for creating and animating single graphs with single lines. And, figured out how to create multiple lines in a graph: Drawing ...
2
votes
1answer
82 views

Speed of object[property]

I want to keep eye on "which objects already were processed" by pushing them into some set. As there is no type Set in JavaScript, I'm gonna use Object, like stated at Mimicking sets in JavaScript? So ...
0
votes
1answer
93 views

jScroll pane function ceases when I use “set text of container” onClick of button to change content of div ID

This has to be possible but my knowledge of javascript is very limited. I have one DIV ID container of a fixed size, and I want people to be able to click each button and the content within that ...
0
votes
1answer
212 views

How to change the order of elements in a matched jQuery set

I am writing a javascript based filter: There a lots of divs with the class .single that contain multiple text elements. The filter already hides all .single's that do not contain words: //take them ...
0
votes
1answer
2k views

How to set focus on dropdown list, using javascript, php

I am unable to set focus to my php page dc-test.php (this is a frames page: topFrame and botFrame) dropdown list, which has 2 dropdown lists and are dependent. These dropdown lists values are ...
2
votes
1answer
75 views

Does using a complex object/array as a key work “as expected”?

I need a set of "complex things", where a "complex thing" is an array of numbers or strings. Can I use a plain object for this? Example: var set = {}; set[[1,2]] = 1; set[[1,2]] = 1; set[["string", ...
1
vote
1answer
313 views

How to use JavaScript get and set for polyfill

I'm trying to figure out how to make a polyfill for dataset and I think I need to use get and set to define the function. How would the syntax of get/set be when trying to add them to ...
2
votes
2answers
333 views

Looking for javascript getter/setter equiv. which does not generate warnings

Currently have this code defining getter/setter for an object's selectedID property. The object is called Components. _selectedID: null, get SelectedID() { return this._selectedID; }, set ...
3
votes
2answers
717 views

Accessor Descriptor: How to use 'get' and 'set' in practice?

I am not sure if I am getting it right. This example is straight from MDN (Mozilla Developer Network): var bValue; Object.defineProperty(o, "b", {get : function(){ return bValue; }, ...
2
votes
2answers
77 views

Javascript VisualBasic's WITH equivalent?

Can't figure out how to set multiple object elements at a time? For example, how to write myobject.field1 = 12; myobject.field2 = 13; myobject.field3 = 14; myobject.field4 = 15; myobject.field5 = ...
3
votes
3answers
4k views

How do I clear all intervals?

I am using varName = setInterval(function() { ... }, 1000); to set a couple of intervals in a jquery plugin that I'm writing, but when the plugin is reloaded I need to clear those intervals. I ...
2
votes
2answers
2k views

How is set animation done in Raphael?

I'm trying to accomplish some animation with sets in Raphael, but even though an opacity animation worked, I cannot succeed in moving a set (or even a circle) around the canvas. I found on the Web ...
0
votes
3answers
595 views

ID is undefined but it isn't?

Please look at this fiddle: http://jsfiddle.net/DHts6/1/ Why does it say undefined, even though the id = "foo" is set! Thanks
3
votes
3answers
1k views

Javascript: setting object properties

I want to be able to do this: var user1 = { name: 'John', gender: 'male' } var user2 = { name: 'James', gender: 'male', email: 'james@gmail.com' } user1.someSetMethod({email: ...
0
votes
1answer
73 views

Showing elements in a Javascript set

(This is a follow up question from Empty set in javascript) I have a set in javascript defined like this: function createSetFromList(list) { var set = { }; for (var i = 0; i < ...
-1
votes
2answers
391 views

Empty set in javascript

I have implemented a set datatype in javascript based in a generic object type, like this: function createSetFromList(list) { var set = { }; for (var i = 0; i < list.length; i++) ...
0
votes
1answer
290 views

Add TabIndex to buttons built by JavaScript

I have buttons built with JavaScript and want to add TabIndex for keyboard accessibility. I added accesskey values in this code and in this code: button41 = new ...
2
votes
4answers
1k views

Append array element only if it is not already there in Javascript

I need to add an element to an array only if it is not already there in Javascript. Basically I'm treating the array as a set. I need the data to be stored in an array, otherwise I'd just use an ...
0
votes
1answer
934 views

XSLT not getting parameter passed from javascript

Very simple code, I just couldn't make it work. The parameter in XSLT is always empty. What am I missing? I am using FF6. Please help, your guys with sharp eyes. Thanks! index.html <html> ...
1
vote
2answers
250 views

Help with converting inline onclick

I'm trying to convert some hard-coded inline onclicks to be dynamically created. Here's what they look like now: (html) <ul id="search-navlist"> <li><a href="#" ...
1
vote
1answer
2k views

How to properly remove a Raphael SVG element referenced in an animated set?

I have a set of animated Raphael SVG elements. I am adding new elements and removing old ones with user initiated ajax calls. I set.push() the new elements but because the elements I need to remove ...
3
votes
7answers
3k views

How to set a Javascript object values dynamically?

It's difficult to explain the case by words, let me give an example for this myObj = { 'name': 'Umut', 'age' : 34 } prop = 'name' value = 'Onur' myObj[name] = value (This doesnot work) ...
3
votes
3answers
12k views

Set the Value of a Hidden field using JQuery

I want to set the value of a hidden field, using JQuery. Hidden Field: <input id="chag_sort" type="hidden" name="chag_sort"> My JQuery: $("#input[name=chag_sort]").val(sort2); What am I ...
1
vote
1answer
520 views

JS how to check if webpage has been added as homepage?

I am trying to make something similar like Google on IE. They create a "Make Google your homepage" script for IE. This is what I have so far: <script type="text/javascript"> ...
0
votes
1answer
239 views

Clear Set TimeOut Javascript

I am creating Tabs in javascript in my ASP.Net web site. Say Tab 1 Tab 2--- Tab 10. When I click on Tab 1 it shows some data and I call setTimeout function that keeps refreshing the Tab 1 data. My ...
5
votes
6answers
3k views

Set of objects in javascript

I'd like to have a set of objects in Javascript. That is, a data structure that contains only unique objects. Normally using properties is recommended, e.g. myset["key"] = true. However, I need the ...
0
votes
3answers
2k views

how to change the file input's filelist

I have this input type file, and I want to change it's fileslist. Example: <input type = "file" id = "fileinput" /> <script type = "text/javascript> ...
3
votes
2answers
3k views

TINYMCE set focus… just will not work

I've tried tinyMCE.execInstanceCommand("content", "mceFocus"); I've tried tinyMCE.execCommand('mceFocus', false, "content"); None of them seem to work :-(
0
votes
1answer
265 views

Get all (next) subsets or permutations (or something)

I'm not quite sure of the word to use here so excuse me if I'm using the wrong terminology. I'm trying create a function to get the next permutation of a string giving the current string and a string ...
2
votes
1answer
254 views

javascript array set deep value

I have an array called insurances. I set data in this array like this: var insurances = {}; insurances[0] = {} insurances[0]['id'] = 0; etc... Later on i want to change the id by doing this: ...
1
vote
2answers
648 views

How do I set a new variable value inside a javascript function?

I have 2 navigation buttons, 'a' and 'b', where 'a' links to page 'A' and 'b' links to page 'B'. When the page loads, page 'A' is visible by default and page 'B' is hidden by default. When link 'b' is ...

1 2