CSS modal

<style> /* The Modal (background) */ .modal { display: none; /* Hidden by default */ position: fixed; /* Stay in place */ z-index: 1; /* Sit on top */ padding-top:…

0 Comments

Jquery Inside React js

npm install jquery --save npm i --save-dev @types/jquery import $ from 'jquery'; // jquery code here $("button").click(function(){ $.get("demo_test.asp", function(data, status){ alert("Data: " + data + "\nStatus: " + status); });…

0 Comments