how to keep my data when I login back to my user account using JQuery code example
Example 1: why wont my phython program get any user input
username= input("Enter your username: ")
print ("Hello there " + username)
Example 2: how to do auto download when you click on a link
download file
var a = document.createElement('a');
a.href = "https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png";
a.download = 'download';
a.click();