1
vote
1answer
27 views

“Use Strict” breaking Javascript function - Why?

Adding "use strict" to this function is breaking it. Specifically the inputs I am trying to un-disable are remaining disabled in strict mode. csc_popup_in() and csc_popup_out() functions are defined ...
2
votes
4answers
53 views

JSLint Strict Violation. Object Oriented Javascript frustrations

I'm trying to learn to do object oriented programming in JavaScript and getting JSLint strict violations. I understand that I'm using this in a non-global context (or something to that effect...), but ...
1
vote
2answers
41 views

Make all functions strict mode literal object?

Let's say we have this script. var apple = { type: "macintosh", color: "red", getInfo: function () { return this.color + ' ' + this.type + ' apple'; } ///more functions ...
4
votes
3answers
125 views

JavaScript 'use strict'; inside functions

Tested some js code in Chrome Dev Console and I'm a bit confused. I know that in strict mode functions that are not methods of an object when referred to this keyword should receive undefined instead ...
0
votes
1answer
49 views

Simple JavaScript Inheritence plugin error

I read John Resig's blog article on a Simple JavaScript Inheritance plugin that he wrote based on base2 and prototype. Example code is here: http://jsfiddle.net/rFfX9/ //'use strict'; /* Simple ...
2
votes
1answer
69 views

“cases where null or undefined is coerced into becoming the global object”

John Resig wrote: Finally, a long-standing (and very annoying) bug has been resolved: Cases where null or undefined is coerced into becoming the global object. Strict mode now prevents this from ...
0
votes
1answer
60 views

how to get javascript to not rounding a number with 0 decimal to a whole number

Is there a way to get JS to not round a number with a 0 decimal to a whole number? ex var = 100.0 //100? I know this isn't a regular thing to do in JS but it's needed to port a method from a ...
2
votes
1answer
346 views

Inconsistent behaviour of “this” in JavaScript strict mode

Update For clarity: @FelixKing: Yes, I expected this to still be undefined when calling window.foo(), and here's why: since, in JavaScript: function foo() { console.log('I am a function'); } ...
2
votes
4answers
164 views

jQuery callback - strict violation

I get the basic idea about this not being in a method when in strict mode outlined here, but it gets a bit erudite, to be honest. So, in more prosaic terms: I have a handler like so: ...
0
votes
2answers
176 views

Using undefined in self-executing anonymous function

I'm trying to implement namespacing using the self-executing anonymous functions in CoffeeScript: Javascript Namespace Declaration ...
0
votes
2answers
228 views

How is JavaScript's strict mode implemented

Update: Perhaps the way the function is called is to blame, so here's to it: 2 JS files  Main.js: self invoking (non-strict) function that adds an event listener for the '(on)load' ...
0
votes
1answer
153 views

Can't create object properties in strict mode

If I use strict mode the following code does not work. It fails on the this.bar = 'foobar'; line. Why is this so? How can I make an object property in strict mode? <html> <body> ...
2
votes
1answer
224 views

using “use strict” and variable scope

I've started using "use strict" for my scripts recently. One of the behaviors I noticed is that this.[name of variable] doesn't work for an object. For example: (function(){ "use strict"; ...
3
votes
2answers
858 views

Replicating arguments.callee in strict mode

I'm working in strict mode for the first time and, what-d'ya-know, it's also the first time in ages being able to use a non strict mode property would be useful. My question here outlines the exact ...
0
votes
1answer
110 views

JavaScript behavior explanation regarding a var declaration

I have the following code: "use strict"; function isDefined(variable) { return (typeof (window[variable]) === "undefined") ? false : true; } try { isDefined(isTrue); } catch (ex) { var ...
6
votes
2answers
3k views

Disable “use the function form of use strict” but keep the “Missing 'use strict' statement” warning

I am using jslint to validate my code. I have "use strict" on all my pages. How can I disable the message "use the function form of 'use strict'" but keep the "Missing 'use strict' statement" warning, ...
11
votes
1answer
4k views

JSHint strict mode and JQuery: '$' is not defined

The following JS: (function() { "use strict"; $("#target").click(function(){ console.log("clicked"); }); }()); Yields: test.js: line 5, col 3, '$' is not defined. When executed via ...
2
votes
4answers
347 views

Set variable within another context

I have the following function "use strict"; function Player { this.width; this.height; this.framesA = 5; this.image = new Image(); this.image.onload = function () { ...
4
votes
2answers
2k views

Why doesn't “use strict” (JavaScript) detect an undeclared variable?

I'm trying to get the "use strict"; directive to work, and having a bit of trouble. In the following file FireFox 9 will (correctly) detect that someVar hasn't been declared on line 3, but fails to ...
12
votes
1answer
3k views

Why is JSHINT complaining that this is a strict violation?

I think this may be a duplicate of Strict Violation using this keyword and revealing module pattern I have this code: function gotoPage(s){ if(s<=this.d&&s>0){this.g=s; ...
2
votes
2answers
157 views

Javascript: besides “use strict”, which other “use” directives are there?

Besides use strict, which other use directives are there? (Apparently my short question doesn't meet StackOverflow's quality standards so I have to add this sentence and more to allow me to post ...
2
votes
3answers
2k views

Would this enable “use strict” globally?

Similar, but not the same as, How to enable ECMAScript "use strict" globally? I have bought JavaScript Patterns and it recommends enabling use strict. Adding it to the two dozen javascript files ...
6
votes
2answers
3k views

Strict Violation using this keyword and revealing module pattern

Having trouble getting the following to pass jslint/jshint /*jshint strict: true */ var myModule = (function() { "use strict"; var privVar = true, pubVar = false; function ...
4
votes
1answer
427 views

JavaScript: Strict mode and anonymous functions

Nearly all my JS files are wrapped in anonymous functions. If I include "use strict"; outside the anonymous function, is strict mode still applied to the anonymous function? For example, is strict ...
0
votes
1answer
197 views

Reply link, auto addition of text to textarea in XHTML Strict?

I'm trying to add a link next to each comment on my blog, where when you click on the word "Reply", "@Name" automatically adds to the comment form's textarea below (it also jumps to the form by anchor ...
5
votes
3answers
841 views

JavaScript: Can ECMAScript 5's Strict Mode (“use strict”) be enabled using single quotes ('use strict')?

JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'. Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the ...
2
votes
6answers
793 views

XHTML Strict is not valid because of html tags inside Javascript

I'm creating a site using XHTML Strict markup. Inside the html I need to put a js script: <script type="text/javascript"> $(document).ready(function () { $('#nav ...
3
votes
1answer
631 views

How to enable ECMAScript “use strict” globally?

I have a project with literally hundreds of JavaScript source files. I am wondering what is the best way to enable the strict mode for the project? I understand the consequences of this action and I ...
2
votes
1answer
331 views

hasOwnProperty and ECMAScript 5 strict mode

I'm curious: anyone knows why the ECMAScript5 specification hasn't tightened more the predefined object prototype's properties in strict mode? For instance, it seems like there's no info regarding the ...
3
votes
2answers
2k views

Disable a built-in function in javascript (alert)

Simple: I want to disable/overwrite alert(). Can I do this? More importantly, is it right to do this? What about strict mode?
4
votes
2answers
1k views

Why is this illegal in strict mode?

Yeah, yeah, I know, strict mode ain't around yet, but really, I'm planning for the future... So, why is this: $('#'+ $(this).attr('id').replace('control-', 'legend-')).fadeIn(); ... not allowed in ...
1
vote
3answers
449 views

How to get a NON-standard attribute in IE8 through javascript?

I have an HTML page that has this doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> However, the HTML contains this tag: <applet ...
11
votes
2answers
2k views

In ECMAScript5, what's the scope of “use strict”?

What scope does the strict mode pragma have in ECMAScript5? "use strict"; I'd like to do this (mainly because JSLint doesn't complain about it): "use strict"; (function () { // my stuff here... ...
1
vote
2answers
168 views

Why does Javasript's strict comparison act the way it does? [duplicate]

Possible Duplicate: Is JavaScript’s math broken? If the main difference between Javascript's "strict comparison" operators and the traditional ones is type coercion, why does ...
4
votes
2answers
3k views

Should I worry about “window is not defined” JSLint strict mode error?

This won't pass JSLint in strict mode: "use strict"; (function (w) { w.alert(w); }(window)); The error--from jslint.com--looks like this: Problem at line 4 character 3: 'window' is not defined. ...
32
votes
4answers
5k views

Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)

ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's ...