<head>
<script type="text/javascript" src="customScript.js"></script>
<link href="dist/css/bootstrap.min.css" rel="stylesheet">
<script src="docs/assets/js/vendor/jquery.min.js"></script>
<script src="dist/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/facebookicn.png">
<title>Facbook</title>
<link href="dist/css/jumbotron.css" rel="stylesheet">
<link href="dist/css/custom.css" rel="stylesheet">
</head>
//this is in coustom.js file
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
//this is in html
<div class="col-md-6 txtfeild ">
<a href="#" data-toggle="tooltip" data-placement="left" title="Hooray!"><input id="firstName" class="form-control" placeholder="First Name" type="text" onblur="validateName()" ></a>
</div>
i am getting error like this customScript.js:1 Uncaught ReferenceError: $ is not defined at customScript.js:1 tried many methods but cannot resolve this error