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....
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...
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...
... 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...
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...
... 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...
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...
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...
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...
I was playing around with JSLint lately, and entered the following: var ss = " ///// "(" \/ "); JSLint returned: "Problem at line 1 character 10: Bad...
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...
... 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...
This extension has so improved my jslint/JavaScript workflow. Some suggestions: 1 - Single key (CTRL-J maybe?) to launch the validator. 2 - Launching the...
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...
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....
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...
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 =...
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...
Given var b = javaApplet.Connect("javascript:OnConnect()"); as the target of investigation, I inevitably see the "Script URL" complaint from JSLint. Since the...
... 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...