skip to Main Content

How to improve my website in loading the data/ sorting/ jquery? And Best Practices for web development – Html

I am building a website to visualize the data in table like these: index.html: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Employee Data</title> <!-- Load CSS --> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.25/css/jquery.dataTables.min.css"> <!-- Load Custom CSS --> <style> body { font-family: Arial,…

VIEW QUESTION

Mongodb – If Token is not Present I want to redirect the page to login but its not working. When no token is present or logout i want to redirect the page login

I am Using React Router Dom V6 Here if(!localStorage.getItem("token")){ navigate("/login") } is not Working import React,{useState,useEffect} from 'react'; import axios from 'axios'; import { useNavigate } from 'react-router-dom'; const Home = (props) => { const [user,setUser]=useState(null); let navigate = useNavigate();…

VIEW QUESTION
Back To Top
Search