Here you can see the when I click on the icon it doesn't change. How to change it
$(document).ready(function(){
$('.fa fa-bars').click(function(){
$(this).toggleClass('fa fa-times');
});
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<html>
<head>
<script src="java.js"></script>
<script src="https://use.fontawesome.com/16ca663e5d.js"></script>
</head>
<body>
<header >
<nav >
<ul >
<li>
<a >Home</a>
</li>
<li >
<a>Gallery</a>
</li>
<li >
<a >Contact</a>
</li>
<li>
<a >Sign in</a>
</li>
</ul>
</nav>
<i class="fa fa-bars ham" aria-hidden="true"></i>
</header>
<section id="home" class="container-fluid">
</section>
<script>
$(document).ready(function(){
$('.fa fa-bars').click(function(){
$(this).toggleClass('fa fa-times');
});
});
</script>
</body>
</html>