Google map integration in php

https://developers.google.com/ https://console.cloud.google.com/apis/dashboard https://console.cloud.google.com/apis/credentials?= create crediential and api key AIzaSyC4Jla_Kf9fxV4G_nfgLCgvwRrHoQKRsoo (api key) enable api and services map and javascript api You have to enable all sections one by one. API Key:…

0 Comments

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

Data Fetching By API in react js

A. In Class Component componentDidMount() {   fetch('http://127.0.0.1:8000/admin/menu-data')   .then((response) => response.json())   .then(CategoryList => {       this.setState({ menusData: CategoryList });   }); }   A. In Functional…

0 Comments