I'm trying to modify a local HTML file by including tags for a local .js file and 2.0.3 jquery.min.js. Here is an excerpt from the code (entire script is here):
jsdom.env(
data,
["//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js", "../javascripts/fixit.js"],
function (errors, window) {
var $ = window.jQuery;
⋮
Now, if I run the script twice, it includes both of these links in the HTML again. Is there a way to make this conditional and include the tags only if they are not already present?
(I maintain jsdom.)
The whole point of jsdom is you can do normal DOM operations, like testing for an element's presence or inserting an element, inside Node. So I would do something like this: