This is what I know about enqueueing scripts:
Arguments:
handle: a unique id for the script
src: URL of the script
deps: scripts that this script depends on
ver: the version of the script
in_footer: whether or not to load the script in the footer
-You wrap a function around this and include it with an action
Example:
function coolslider_enqueue_script(){
wp_enqueue_script(
'my-coolslider',
plugins_url( '/coolslider.js', __FILE__ ),
array( 'jquery' ),
'1.54',
true
);
}
add_action( 'wp_enqueue_scripts', 'coolslider_enqueue_script' );
Hope this helps!