i want to add javascript in my html form modal. but i got error "uncaught referenceError: $ is not defined" when i define count variable.
So ,how can i resolve this question.
<div class="modal">
<form id="multiform">
<script rel="javascript" type="text/javascript" href="/static/js/jquery.min.js">
var count=$('select#ip option:selected').length;
alert(count);
/*code more*/
</script>
</form>
</div>