Remove default jquery from wordpress

{ // deep_execution_view
ANKIT AGRAWAL |
WordPress themes comes with a default jquery if you want to remove that jquery then write following code in functions.php

if (!is_admin())
{
	add_action("wp_enqueue_scripts", "ce_enqueue_scripts");
}

function ce_enqueue_scripts()
{
	wp_deregister_script('jquery');
}

}