JS script not being included [closed]

WordPress uses the noConflict version of jQuery which does not allow

$.

use

jQuery.

or simple replace

jQuery( document ).ready(function()

by

jQuery( document ).ready(function( $ )

hope that helps.