getScript jquery code example
Example 1: jquery cdm
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
Example 2: jquery getscript
$.getScript( "ajax/test.js" )
.done(function( script, textStatus ) {
console.log( textStatus );
})
.fail(function( jqxhr, settings, exception ) {
$( "div.log" ).text( "Triggered ajaxError handler." );
});
Example 3: jquery .not
.not('[type=radio], [type=checkbox]');
//or for just one
.not('[type=radio]');