twitter
twitter

Reputation: 9295

How to delete script loaded by .getScript()

When I load a script with .getScript('file.js') is there a way to do remove that script later? sort of like a clean where I say delete the js I loaded earlier

Upvotes: 7

Views: 10046

Answers (2)

Jacob Mattison
Jacob Mattison

Reputation: 51052

getScript doesn't "load" a script in the sense of keeping it around; it downloads the script from the server and runs it immediately. So there's no need to remove it.

However, any DOM objects that the script creates, or functions it defines, etc., will continue to exist. Removing these will require knowing specifically what they are; probably your best bet is to have your script define a function that deletes all of the things that the rest of the script creates.

Upvotes: 8

buley
buley

Reputation: 29208

Unfortunately once the code has been executed you can't unexecute it.

However, if file.js creates DOM objects, you can delete those via delete object.name, and if you're bind()ing events you can always unbind() them.

Upvotes: 5

Related Questions