Alert is not showing

Alert is not showing

I have this code:

  1. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  2. <script src="/js/jquery-ui.min.js"></script>
  3. <div class="row col-lg-5">
  4.   <h2>Get Request</h2> 
  5.   <button type="button" class="btn btn-warning" id="getRequest">getRequest</button>
  6.   <br><br>

  7. <script type="text/javascript">
  8. $(document).ready(function(){
  9. $('#getRequest').click(function(){
  10.   alert($(this).text());
  11. });
  12. });
  13. </script>
  14. </div>  
The alert is not showing when I click the button.

The jquery.js is loading , and I can't tell why it isn't make an alert.

Please help me, thanks!