34,238 reputation
32444
bio website github.com/meetselva
location Watchung, NJ
age 29
visits member for 3 years, 2 months
seen 1 hour ago
stats profile views 1,176

15h
awarded  Nice Answer
1d
comment Define local function in JavaScript: use var or not?
@FritsvanCampen And yes, you can demonstrate polymorphism behavior without using prototype but I agree that reassigning a var there is not a good demonstration.
1d
comment Define local function in JavaScript: use var or not?
@FritsvanCampen Which part are you not clear behavior like in diff 1 or when the browser loads and how is that a trick when it clearly shows undefined in version 1 and in version 2 it is defined. Yes, both the versions are different and the difference is the order at which they are exposed and that is the difference I am trying to explain... I believe the 2nd point has been explained clear enough.
1d
awarded  Nice Question
1d
comment mousemove event is triggered onscroll even when mouse was not moved on chrome
You have some good points and you should post them in the answer instead of hanging them in comments. Edit your answer and you will definitely get my vote.
1d
comment Define local function in JavaScript: use var or not?
@FritsvanCampen Difference 1: It means you can achieve a behavior like polymorphism programmatically where you can defined which function it will execute at run time. You should read the link posted in MDN which has more details and examples.
2d
comment Define local function in JavaScript: use var or not?
@FritsvanCampen Difference 2: The difference actually lies on when the browser loads them into the execution context which is mentioned in point 2. See the difference var a, b; a = function () { b(); }; a(); b = function () { alert("b"); }; and var a; a = function () { b(); }; a(); function b() { alert("b"); };. In version 1: function b is defined as function expression which would throw an error while version 2 is a function declaration which would work fine as it is already initialized.
2d
comment Adding a class to the parent div of a specific image
How about $('img[src="http://image.com/onlythisone.jpg"]').parent().addClass('your_class'‌​)?
2d
revised count checkbox class only once
added 551 characters in body
2d
revised Define local function in JavaScript: use var or not?
added 50 characters in body
2d
revised count checkbox class only once
added 1405 characters in body
2d
comment count checkbox class only once
@user2308480 Let me see
2d
answered count checkbox class only once
2d
comment Browser GET request returning old images
If it is not realtime live video, try bundling the images sequentially first before previewing. Also check chrome://cache in another window to see if it is really getting cached.
2d
reviewed Reject suggested edit on Why can the c# compiler not resolve the argument types of a lambda expression in a ternary operator?
2d
reviewed Approve suggested edit on how can i convert this code into android phone which have written in java?
2d
comment Change variables in jQuery on mouseover
With that code, when you scroll normally on your page.. you would end up binding hundreds of handler for .element and .element2 in like a minute.
2d
answered jQuery not working on IE 9 when retrieve grand child element
2d
comment setTimeout() and IE8. Function not being called
Do you see any error in console? Is your code reaching inside onStartUp function? Is loginForm exist and loginForm.length is 1 ? I don't think setTimeout is incompatible with IE8 developer.mozilla.org/en-US/docs/Web/API/…
May
16
comment How to make input required if specific options are selected in a select
What do you mean by making an input required? Do you have a validation code? If so, check the value of model dropdown before validating.