-
- <script src="/js/jquery-ui.min.js"></script>
- <div class="row col-lg-5">
- <h2>Get Request</h2>
- <button type="button" class="btn btn-warning" id="getRequest">getRequest</button>
- <br><br>
- <script type="text/javascript">
- $(document).ready(function(){
- $('#getRequest').click(function(){
- alert($(this).text());
- });
- });
- </script>
- </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.