CMS

52,200
reputation
4033 views

Registered User

name CMS
member for 1 year
seen 30 mins ago
website
location Guatemala
age 25
My name is Christian C. Salvadó and I am a Web Developer working and living in Guatemala, Central America.

I currently work on ASP .NET C# based projects, and I personally interested in many programming paradigms, like functional programming, object oriented programming (class and prototype based), logic programming, metaprogramming (reflective and generative programming), with many languages like JavaScript, F#, Haskell, Java, etc...

8m
comment JavaScript Object Literal Notation Internal Variable Pointing
I'm afraid that both examples will fail, because the anonymous function will be executed when the object literal is being created, and myVars is undefined at that time, on the first one a TypeError will be thrown. The second example uses call, but the same problem happens, myVars is undefined at the moment that call is used, and this will refer to the global object (window).
20m
comment How to put an array of javascript object in a cookie?
Keep in mind that cookies have size limits (the more restrictive browser it's IE, allows a maximum of 4,096 bytes per cookie is.gd/5kvH7), and don't forget that cookies will be sent with every request, that's why is recommended to have cookie-free domains for images and components. is.gd/5kwcx
5h
revised JavaScript Object Literal Notation Internal Variable Pointing
edited title
10h
accepted JavaScript Object Literal Notation Internal Variable Pointing
12h
comment JavaScript Object Literal Notation Internal Variable Pointing
this is bound to the function-context, has nothing to do with the myVars instance
12h
answered JavaScript Object Literal Notation Internal Variable Pointing
12h
answered Javascript operator !==
15h
accepted What is your favorite way to comment several lines in vim?
19h
accepted How to make child-navigation not affect parent browser history ?
21h
answered want to read number of words and charecter using javascript
22h
answered Why does javascript turn array indexes into strings when iterating?
1d
accepted Strange behavior in Javascript enhanced for…in loop
1d
answered Strange behavior in Javascript enhanced for…in loop
1d
comment Dynamic function call (apply)
Actually you don't need apply nor call, since the function call is being made on an object instance (Test), the context (the this keyword) will be set implicitly on that function, there is no need to set it explicitly, eg. Test[obj.action](obj.id);.
1d
comment Dynamic function call (apply)
Keep in mind also that do is a reserved word.
1d
comment Calling a function by a string in JavaScript and staying in scope
In your second solution, I would recommend you to use an empty object rather than an Array for the functions variable, eg. var functions = {};
1d
accepted Should I use jQuery.inArray()?
1d
answered How to make child-navigation not affect parent browser history ?
1d
answered What is your favorite way to comment several lines in vim?
1d
comment Should I use jQuery.inArray()?
You should return i, the OP want's the element index, and also if not found, -1 should be returned.
1d
answered Should I use jQuery.inArray()?
1d
revised Call function with multiple arguments
added 464 characters in body; added 282 characters in body
1d
comment Call function with multiple arguments
@David: What do you mean by scope? The this keyword ?
1d
revised Call function with multiple arguments
added 256 characters in body
1d
accepted Call function with multiple arguments
1d
revised Call function with multiple arguments
added 589 characters in body; added 1 characters in body
1d
answered Call function with multiple arguments
1d
answered How can I edit a JavaScript variable?
2d
awarded  Necromancer
2d
comment overriding default property in an object
How does your JSON looks like, and what result do you want to achieve?
2d
comment handling null in json or javascript
That will set the default value not only when the members are null, also when they are 0, false, undefined, empty string and NaN.
2d
accepted Check user is logged in using Jquery
2d
accepted Prototype - get next text input after an HTMLInputElement
2d
comment Prototype - get next text input after an HTMLInputElement
Yes, I assumed that he was looking for the next input sibling, but if it's not the case the OP should post some markup...
2d
answered Prototype - get next text input after an HTMLInputElement
2d
awarded  Nice Answer
2d
comment Is there a Place I can run C# Code Online
@Andrew: I find it useful when I don't have a local Visual Studio copy, I've mainly used it only for small tests (kind of the way I use codepad for other languages), but the application truly is amazing... have you tried the debugger, the code-completion? :)
2d
answered Is there a Place I can run C# Code Online
2d
accepted Javascript getElementById acting odd…
2d
answered Javascript getElementById acting odd…
2d
accepted javascript object gets overridden in IE
Dec
9
answered javascript object gets overridden in IE
Dec
8
accepted Ordering of javascript execution (inline and external), IE vs. Firefox
Dec
8
answered Ordering of javascript execution (inline and external), IE vs. Firefox
Dec
8
revised Firebug: “event is not defined”
added 1408 characters in body
Dec
8
accepted Firebug: “event is not defined”
Dec
8
revised Firebug: “event is not defined”
added 96 characters in body
Dec
8
answered Firebug: “event is not defined”
Dec
8
answered jquery toggle blur on all textboxes?
Dec
8
answered Javascript message to confirm when exiting a form