Have used the same code before and it worked so it's not the code thats the problem. I have only changed the class names in the current code but it doesn't load the jQuery or CSS. This is how I call the scripts.
add_action( 'wp_enqueue_scripts', 'scripts' );
function scripts() {
wp_enqueue_style( 'style', plugins_url('css/style.css', __FILE__) );
wp_enqueue_script( 'style' );
wp_register_script( 'jquery', plugins_url('js/jquery.js',__FILE__ ), array( 'jquery' ));
wp_enqueue_script('jquery');
}
Like I said, have used the exact same method before but this time it doesn't work. Don't know what to do. Thanks!