Search the web
Sign In
New User? Sign Up
jslint_com · JSLint.com
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 418 - 447 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
418
It's here: http://code.google.com/p/jslint-dashboard/ I don't expect to update it with every change to JSLint, but it will be updated every few months at...
Michael Newton
mnewton32
Offline Send Email
Apr 1, 2009
6:11 pm
419
Does anyone still write HTML tags in upper case? I am thinking about removing the "Tolerate HTML case" option....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 2, 2009
12:35 am
420
This is something I still see often. However, since jslint is not capable of validating otherwise perfectly valid (and required) html (I am thinking...
Jakob Kruse
thekrucible
Offline Send Email
Apr 2, 2009
6:37 am
421
Unfortunately many HTMl code are still generated in uppercase. Until every one is using XHTML or at least validated HTML, I suggest to keep the option....
Fred Lorrain
grumelo68
Offline Send Email
Apr 2, 2009
7:30 am
422
May I ask you how do you use it ? I've downloaded the zip file and then ???...
Fred Lorrain
grumelo68
Offline Send Email
Apr 2, 2009
7:38 am
423
Since some browsers (IE family) generate capital letter HTML tags when using contentEditable, I think that it could be unnecessarily restrictive to remove the...
Noah Peters
boyopeg
Offline Send Email
Apr 2, 2009
11:29 pm
424
The latest (very much simplified) version (8.0) of Widget Tester is at http://tinyurl.com/5unocx . This incorporates JSLint of 2009-03-28. Widget Tester...
Merlin
harry152566
Offline Send Email
Apr 14, 2009
3:35 pm
425
In this example: var getObjLength = function(obj) { var objLength = 0, key = ''; for (key in obj) { objLength++; } return objLength; }; The key variable is not...
Fred Lorrain
grumelo68
Offline Send Email
Apr 15, 2009
3:02 pm
426
... It is correct because there is an error in the snippet: the body of a for in should be wrapped in an if statement to filter unwanted properties from the...
santini.alberto
Offline Send Email
Apr 15, 2009
3:20 pm
427
Ok, thank you very much. I should have read your JavaScript recommendations before asking. What a shame .hasOwnProperty() is not documented in many JavaScript...
Fred Lorrain
grumelo68
Offline Send Email
Apr 16, 2009
8:09 am
428
Hi What’s the rationale behind issuing a line breaking error for code like this: var x = somefunc( param1, param2 ); But not for code like this: var x = { ...
Jakob Kruse
thekrucible
Offline Send Email
Apr 16, 2009
12:34 pm
429
... I agree. So I have changed the way JSLint looks at line breaking. It is now specifically concerned with infix operators, comma, and semicolon, and is more...
Douglas Crockford
douglascrock...
Offline Send Email
Apr 17, 2009
3:15 am
430
... Thanks. This has been fixed....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 18, 2009
5:55 am
431
I added an edition member to the JSLINT global function. It contains a string identifying the current edition....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 19, 2009
8:59 pm
432
At http://tinyurl.com/5unocx there is a new version (8.0.4) of the Widget Tester Widget which can download and use the latest edition of JSLint from...
Merlin
harry152566
Offline Send Email
Apr 19, 2009
11:07 pm
433
... Please use jslint.js instead. It is minified and will load faster....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 20, 2009
3:41 am
434
... I would gladly do that, but http://www.JSLint.com/jslint.js appears to be the WSH Edition of JSLint and not a straight minification of fulljslint.js....
Merlin
harry152566
Offline Send Email
Apr 20, 2009
9:18 am
435
Hi, I don't know what I have done differently, but last time I checked my document I didn't get this error. I have only made slight modifications since, so...
starie78
Offline Send Email
Apr 20, 2009
2:11 pm
436
You could pobably get rid of those errors by checking the "assume a browser" box which will let JSLint know about the document object and stuff. Sent from my...
mnewton32@...
mnewton32
Offline Send Email
Apr 20, 2009
2:15 pm
437
Hi, Yes you were right - I knew I'd missed something obvious (first day back after Easter Hols so my brain not full functioning ;) ) I still have Error: ...
starie78
Offline Send Email
Apr 20, 2009
2:23 pm
438
... Pending resolution of this issue, I've fixed Widget Tester (now version 8.0.5) so that it downloads from http://www.JSLint.com/fulljslint.js no more than...
Merlin
harry152566
Offline Send Email
Apr 20, 2009
2:46 pm
439
Escape is not a good idea, or so I've been told. Use encodeURIComponent instead. Or I think that's it. Not at a PC right now. Sent from my BlackBerry device on...
mnewton32@...
mnewton32
Offline Send Email
Apr 20, 2009
2:52 pm
440
I'm happy to announce an update to the JSLint Multi widget. The new widget has been submitted to Yahoo Widget Gallery, but they update very slowly, so for now,...
Jakob Kruse
thekrucible
Offline Send Email
Apr 21, 2009
9:21 pm
441
... http://www.JSLint.com/jslint.js will be kept in sync with fulljslint.js....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 22, 2009
2:37 am
442
Widget Tester Widget (version 8.0.7) with JSLint 2009-04-19 is now at http://tinyurl.com/5unocx . This version has an option to download and use the latest...
Merlin
harry152566
Offline Send Email
Apr 23, 2009
12:00 am
443
JSLint now checks that the keys in a JSON object are all unique....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 24, 2009
9:32 pm
444
JSLint produces "Unexpected space" errors for the following: var myArray = [ 1 , 2 , 3 ]; Shouldn't having "Tolerate sloppy line breaking" on allow for this?...
speedomodel@...
speedomodel...
Offline Send Email
Apr 24, 2009
9:55 pm
445
... I never imagined that someone would insert a line break before a comma. But I agree that "Tolerate sloppy" should allow it. It does now....
Douglas Crockford
douglascrock...
Offline Send Email
Apr 25, 2009
9:43 pm
446
Question: Did you really mean JSON object, or JavaScript object? JSLint will now complain if I have code such as this: ? var myJSON =...
Jakob Kruse
thekrucible
Offline Send Email
Apr 26, 2009
9:48 am
447
I was code reviewing some code, which is similar to the structure below: var x = { "y" : "not test"}; var z = x.y = "test"; It gets several errors, and the...
kevin_hakanson
Offline Send Email
Apr 27, 2009
4:43 pm
Messages 418 - 447 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help