The strict tag has no wiki summary.
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
428 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 ...
5
votes
2answers
392 views
Standards-compliant equivalent to target=“_blank”
There are instances where I have to open links in a new window/tab. Is there a method of doing so that is valid for strict HTML? Using jQuery to do so would be acceptable, but I'd rather not just ...
1
vote
1answer
167 views
Vim syntax file to be stricter about HTML syntax
I just got bit by a bug that was
<link rel=stylesheet" type="text/css" href="stylesheet.css" media="all">
rather than
<link rel="stylesheet" type="text/css" href="stylesheet.css" ...
3
votes
3answers
557 views
Splint warning “Statement has no effect” due to function pointer
I'm trying to check a C program with Splint (in strict mode). I annotated the source code with semantic comments to help Splint understand my program. Everything was fine, but I just can't get rid of ...
5
votes
2answers
551 views
How can I avoid this error produced while using 'strict'?
I have a couple of lines of code that work if use strict; is commented out. However, I don't want to have it disabled for the entire script just because of one small section.
I need to either recode ...
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 ...
3
votes
5answers
422 views
Can 'use strict' warn instead of error
When using use strict perl will generate a runtime error on unsafe constructs. Now I am wondering if it is possible to have it only print a warning instead of causing a runtime error ? Or is use ...
1
vote
2answers
456 views
Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?
Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?
Example:
<br/>
<input />
Are there certain tags that must have a closing tag, can be ...
5
votes
3answers
842 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 ...
1
vote
3answers
2k views
Sql Server strict convert from varchar to datetime
I'm converting varchar to datetime in Sql Server 2005. Can I force Sql Server to fail if provided varchar has unexpected format?
Example:
select convert(datetime, '01-2010-02', 103)
Expected ...
0
votes
2answers
317 views
LVL - A statement for: “if you didn't download from market then finish()”
I need a simple statement with an "if condition" that does this: "if you didn't download from market then finish()".
If I understood well there are two types of control: I need that the control is ...
4
votes
2answers
488 views
ActionScript: Should I always use strict equality (“===”)?
I'm wondering if I should always use "===" (strict equality) when doing equality checks... Is there any example of when it is preferable to use "==" (non-strict equality)? In particular, should:
if ...
1
vote
2answers
5k views
Joomla 1.6 problem
I recently installed Joomla 1.6 on my XAMPP local server and i got this error message:
Strict Standards: Declaration of JButtonPopup::fetchId() should be compatible with that of JButton::fetchId() ...
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 ...
2
votes
2answers
507 views
Using Dumper not triggering a failure
when running code like this:
use strict;
print Dumper "something";
nothing is printed out and no error occurs during compile and runtime. Why does this happen? Why doesn't strict prevent this code ...
0
votes
1answer
2k views
Roundabout jquery in document Strict
I am useing Roundabout jquery at: http://fredhq.com/projects/roundabout/ in document Strict, but it dont woking in IE.
This is my source:
HTML:
<ul class="roundabout">
<li><a ...
1
vote
3answers
450 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 ...
0
votes
0answers
597 views
Prevent URL being stored to browser history
I need to open a popup window to a url with certain parameters. The parameters contain information that I would like to prevent from showing up in the browser history. The url points to a 3rd party ...
9
votes
5answers
307 views
Strict ISO C Conformance Test
I am currently working on a C project that needs to be fairly portable among different building environments. The project targets POSIX-compliant systems on a hosted C environment.
One way to achieve ...
5
votes
5answers
978 views
Perl: Why is it slower to declare (my) variables inside a loop?
What's the difference, from the interpreter's POV, between the following the following programs:
#!/usr/bin/perl -w
use strict;
for (1..10000000) {
my $jimmy = $_**2;
}
and
#!/usr/bin/perl ...
1
vote
2answers
824 views
Are table cellspacing and cellpadding always 0 (EVEN IF EXPLICTILY SET) if in strict mode?
I have a page I'm converting from quirks mode to strict mode. I added this:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd">
All of a sudden all ...
4
votes
4answers
1k views
Why does Perl's strict not let me pass a parameter hash?
I hava a perl subroutine where i would like to pass parameters as a hash
(the aim is to include a css depending on the parameter 'iconsize').
I am using the call:
get_function_bar_begin('iconsize' ...
1
vote
1answer
2k views
Ensuring strict mode in IE 8
I'm apparently triggering quirks mode (or at least IE 7 standards mode) even though I've added the strict doctype:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ...
0
votes
1answer
1k views
DataTable C# Empty column type
I am trying build a DataTable one row at a time using the following code.
foreach (var e in Project.ProjectElements[hi.FakeName].Root.Elements()) {
index = 0;
object[] obj=new ...
0
votes
1answer
1k views
Why does my simple strict XHTML file give errors when I include jquery?
I'm trying to make a simple strict HTML file that includes jquery:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
1
vote
3answers
764 views
XHtml Strict, Float: Center?
I'm having hard time with Xhtml Strict 1.0 and Css. And I'm almost out of solutions.
My Site Url: http://www.pro-turk.net/beta/
I made a jquery multilevel dropdown menu for my site.
It looks like ...
2
votes
1answer
572 views
Can the rel= attribute contain any string characters and still validate?
I'm wondering because I want to store something other than pre-defined keywords that are typically assigned to rel... and I just wanted to know if this is valid XHTML Strict or not.
0
votes
3answers
1k views
IE horizontal scroll problem
When scrolling the div the table cells move, but the cell text stays in the same position relative to the page. The cell text should scroll along with the cell even though it's in a relative div.
The ...
24
votes
3answers
35k views
Strict Standards: Only variables should be passed by reference
$el = array_shift($instance->find(..))
The above code somehow reports the strict standars warning,but this will not:
function get_arr(){
return array(1,2);
}
$el = array_shift(get_arr());
...
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.
...
3
votes
5answers
339 views
Why does defined sdf return true in this Perl example?
I tried this example in Perl. Can someone explain why is it true?
if (defined sdf) { print "true"; }
It prints true.
sdf could be any name.
In addition, if there is sdf function defined and ...
8
votes
5answers
535 views
php best practices enforcement
I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices.
In perl, I try to follow the guidelines in the popular book "Perl Best ...
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 ...
0
votes
2answers
581 views
Should one use strict comparison in Strings?
I know that for instance, using:
if (in_array('...'), array('.', '..', '...') === true)
Over:
if (in_array('...'), array('.', '..', '...') == true)
Can increase performance and avoid some common ...
48
votes
6answers
91k views
PHP 5 disable strict standards error
I need to setup my PHP script at the top to disable error reporting for strict standards.
Can anybody help ?
9
votes
4answers
27k views
PHP5: Creating default object from empty value [closed]
I'm getting an error in my PHP code Strict Standards: Creating default object from empty value. The code I'm using is:
$u = new User();
$user->id = $obj['user_id'];
The error is appearing on the ...
1
vote
4answers
316 views
Help needed with DIV-layout for site
I am trying to build a page with the following in it:
Already have the following:
one div for page to center the whole page with width 809px
inside <div class="page"> is the following:
...
1
vote
1answer
1k views
Summary of ActionScript 3 strict mode
Where can I get a summary of differences between ActionScript 3.0 strict and standard mode? In other words, what are the things I can do in standard mode but not in strict mode?
1
vote
5answers
2k views
How to fix the size of a Java heap
I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the heap. But, I have a problem at hand ...
1
vote
5answers
2k views
css background color disappears with doctype
I'm trying to set background colours on a few different elements in an html page, but whenever I apply a doctype declaration the colours get ignored. Other styles seem unaffected. I'm sure I'm being ...
4
votes
2answers
3k views
Is there a good *strict* date parser for Java?
Is there a good, strict date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it ...
66
votes
3answers
148k views
How do I break out of a loop in Perl?
I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying:
Bareword "break" not allowed while
"strict subs" in use at ...
13
votes
13answers
774 views
Is it worth the development time to output valid HTML?
Developing websites are time-consuming. To improve productivity, I would code a prototype to show to our clients. I don't worry about making the prototype comform to the standard. Most of the time, ...
