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 964 - 993 of 993   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
964
Hi, We have some custom objects that are injected into the DOM from a lower layer. In order to access these we have to do so using global references. E.g....
Toby Maxwell-Lyte
toby_maxwell...
Offline Send Email
Oct 9, 2009
2:01 pm
965
... JSLINT(input, {predef: ['MyGlobalDomObj']})...
Douglas Crockford
douglascrock...
Offline Send Email
Oct 9, 2009
2:14 pm
966
After working with JSLint for a while i got tired from copy pasting my JS code into jslint.com, so i searched google for a dreamweaver JSLint plugin. Did not...
martijnbeulens
Offline Send Email
Oct 18, 2009
2:16 am
967
Thanks for posting this. Worked the first time. DW CS3. Sam...
samckayak
Offline Send Email
Oct 18, 2009
2:20 am
968
Martijn, For validating JavaScript coded in a document head, could this add-in be setup to validate only the selected code, or perhaps only the code embedded...
samckayak
Offline Send Email
Oct 18, 2009
9:16 pm
969
... Sam, A selection could be possible, only your line numbers will not match?...
martijnbeulens
Offline Send Email
Oct 19, 2009
12:10 am
970
... If the base line number of the selection can't be added, then the line numbers are the same as those displayed by jslint.com, no better or worse. What do...
samckayak
Offline Send Email
Oct 19, 2009
12:14 am
971
I've never used the DW version, but JSLint validates HTML, too, so why not run the whole file through? This way, your line numbers will be correct, and you...
Greg Raven
gregraven...
Offline Send Email
Oct 20, 2009
1:12 am
972
I just tried pasting several valid XHTML pages in JSLint and couldn't get past the DOCTYPE. If it validates HTML, what am I doing wrong?...
samckayak
Offline Send Email
Oct 20, 2009
1:46 am
973
... XHTML is not HTML. JSLint only validates HTML....
Douglas Crockford
douglascrock...
Offline Send Email
Oct 20, 2009
5:14 pm
974
... Does it validate properly at http://jslint.com/? If so, then it's likely a problem with DWLint. If it doesn't work even in the web interface, we'll need...
pauanyu
Offline Send Email
Oct 20, 2009
5:18 pm
975
That's weird. The Yahoo Widgets version of JSLint handles (X)HTML files just fine. Copying and pasting into the on-line version generates all kinds of error...
Greg Raven
gregraven...
Offline Send Email
Oct 20, 2009
9:51 pm
976
If found that sometimes the source is being copied from the dreamweaver cache. This means that if you use DW lint on a page, then change the page, it still...
martijnbeulens
Offline Send Email
Oct 21, 2009
11:03 pm
977
I've fixed the problem by calling a dreamweaver dom function called "synchronizeDocument" before getting the source. This looks like it fixes my problem. New...
martijnbeulens
Offline Send Email
Oct 22, 2009
12:45 am
978
... Thanks. I also noted this problem but I was so grateful for the product I didn't want to complain about it!...
samckayak
Offline Send Email
Oct 22, 2009
2:19 am
979
Reporting a bug or missing feature is not complaining. It's more like helping to make the software better and more useable....
martijnbeulens
Offline Send Email
Oct 23, 2009
12:20 am
980
I was playing around with JSLint lately, and entered the following: var ss = " ///// "(" \/ "); JSLint returned: "Problem at line 1 character 10: Bad...
robert.luxemburg
robert.luxem...
Offline Send Email
Oct 28, 2009
1:56 am
981
JSLint helps to use a proper subset of Javascript. Javascript has a lot of issues which JSLint tries to fix, by proposing just to use a subset of the language...
Christian
christian.wi...
Offline Send Email
Oct 28, 2009
7:02 pm
982
... May I ask why, if you're supplying the string as a hard-coded literal, are you testing it with a regular expression? Don't you as the scripter already know...
Paul Novitski
paul.novitski
Offline Send Email
Oct 28, 2009
7:30 pm
983
This extension has so improved my jslint/JavaScript workflow. Some suggestions: 1 - Single key (CTRL-J maybe?) to launch the validator. 2 - Launching the...
samckayak
Offline Send Email
Oct 29, 2009
4:51 pm
984
Hello, I am trying to integrate JSLint with our build and hence my preferred choice is Rhino engine for JSLint. However I havn't had much of luck in getting...
Kunal Kumar
kunal_ktr
Offline Send Email
Oct 30, 2009
4:37 am
985
Hi Sam, Hahaha, Well you gave it some thought i see. I've no idea if it's all possible but after my holiday i will look in to it. Thanks for the suggestions....
martijnbeulens
Offline Send Email
Oct 31, 2009
12:08 am
986
Hi, I use JSLint with Rhino. And as the goodparts sometimes change, I wrote a short rubyscript to update the options-string. Is there another way to get the...
walfisch_in_the_sea
walfisch_in_...
Offline Send Email
Oct 31, 2009
7:56 pm
987
This code jslint fine, but the second aa function is not accessible. Can't jslint give a warning for this? "use strict"; var NN = ''; function aa(name) { NN =...
woomla
Offline Send Email
Nov 2, 2009
12:26 pm
988
That's a good question. The only warning JSLint gives is that aa is global. JSLint is more forgiving of global mishaps, assuming that if you are doing things...
Douglas Crockford
douglascrock...
Offline Send Email
Nov 2, 2009
12:36 pm
989
What is the intent of flagging a line like gBarGinArr = []; with the error message "Read only?"...
Brook
mrprogguy
Online Now Send Email
Nov 3, 2009
6:38 pm
990
Given var b = javaApplet.Connect("javascript:OnConnect()"); as the target of investigation, I inevitably see the "Script URL" complaint from JSLint. Since the...
Brook
mrprogguy
Online Now Send Email
Nov 3, 2009
6:45 pm
991
... See http://www.jslint.com/lint.html#global...
Douglas Crockford
douglascrock...
Offline Send Email
Nov 3, 2009
6:59 pm
992
... I don't recommend the use of javascript:urls in any context....
Douglas Crockford
douglascrock...
Offline Send Email
Nov 3, 2009
7:01 pm
993
... I don't think that's really in question. The problem is that there aren't any other mechanisms available for use. One would hope that JSLint would be...
Brook
mrprogguy
Online Now Send Email
Nov 3, 2009
7:28 pm
Messages 964 - 993 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