I am doing a code like this
<!-- Optional JavaScript -->_x000D_
<!-- jQuery first, then Popper.js, then Bootstrap JS -->_x000D_
<script_x000D_
src="http://code.jquery.com/jquery-3.3.1.min.js"_x000D_
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="_x000D_
crossorigin="anonymous"></script>_x000D_
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>_x000D_
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>_x000D_
<script>_x000D_
$(document).ready(function () {_x000D_
_x000D_
$(".work-category a").click(function (e) {_x000D_
e.preventDefault();_x000D_
var id = $(this).attr('data-id');_x000D_
$.ajax({_x000D_
url: 'process.php',_x000D_
method: 'POST',_x000D_
data: {_x000D_
clickCategoryID : id_x000D_
},_x000D_
dataType: 'JSON',_x000D_
success: function (data) {_x000D_
$("#content-area").html(data.Content);_x000D_
$(".container-area").animate({top: '100px'}, 1000);_x000D_
$(".single-content").animate({opacity:1}, 1000);_x000D_
}_x000D_
});_x000D_
});_x000D_
_x000D_
});_x000D_
</script>
_x000D_
But the code is not running and the console saya process.php not found though I have the code on it.