How to call WordPress won jQuery in functions.php proper way?

Solution:

You most likely need to replace change $ in your jQuery to ‘jQuery’. E.g.

jQuery(document).ready(function($) {
// code here
});
But your question doesn’t give enough information to go on. What errors are you seeing in the console?