PSPandey Sudipinpandeysudip.hashnode.dev·May 2, 2022 · 2 min readSearch and Filter items of table using pure JavaScript.Here is the code for search and filter items from table Simply HTML code to generate Table. <!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href=...00
PSPandey Sudipinpandeysudip.hashnode.dev·May 2, 2022 · 1 min readCopy to Clipboard using pure JavascriptHere is the code for copy to clipboard using pure javascript you can use this code on your project for copy something. Code function Copy(){ var copyText=document.getElementById("textbox"); copyText.select(); copyText.setSelec...00
PSPandey Sudipinpandeysudip.hashnode.dev·Jan 20, 2022 · 1 min readGUI Url Shortener Using Python.here is the Suorce code for Url shortener. It will short Url and display that. from tkinter import * from tkinter import ttk import pyshorteners # pip install pyshortneres import webbrowser # main window root=Tk() root.title("URL Shortner") root.ge...00