I have the following which dynamically adds javascript and or jquery scripts to my page as and when needed:
var script = document.createElement( 'script' );
script.type = 'text/javascript';
script.src = url;
$("#someElement").append( script );
Is it possible to remove one of more of the scripts which have been added dynamically? i.e. if $("#someElement") is .removeed, will that also remove the script within it?