How to get File Content Using JQuery

 How to get File Content Using JQuery



Steps :- 

  1. Add This Code to Your Website and Set URL = What You Want to Read .
  2. Here Replace Your Destination File URL  with Your Destination File 


HERE IS THE FULL VIDEO CODE
<div id="load-data"></div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <script> $(document).ready(function () { $.ajax({ url: "Your Destination File URL", type: "GET", success: function (data) { $("#load-data").html(data) ; } }) }); </script>


Post Source :- https://codexdindia.blogspot.com/2021/02/how-to-get-file-content-using-jquery.html


Comments