custom PayPal button html code

https://manajmnt-code.blogspot.com/2021/04/custom-paypal-button-html-code.html
I will share with you a professional PayPal button code in html and CSS with icon (font-awesome). look at this code below:
html code for PayPal button with anchor
html code for PayPal button with custom style CSS
Donate button PayPal html code

Open file from local system and save changes to file that opened

https://manajmnt-code.blogspot.com/2021/04/open-file-from-local-system-and-save.html
In this code we will be learn how to use The File System Access API to open file from local system and save changes to file that opened,
in this example we are try with txt file:
to save changes with keybord event Ctrl + s add this code as follows:
window.addEventListener("keydown" , e => {
if (e.key === 's' && e.metaKey) {
    e.preventDefault();
    savefile();
}

});

return to first exemple:
let editor = document.getElementById("editor");

const openfile = async () => {
    [fileHandle] = await window.showOpenFilePicker();
  const file = await fileHandle.getFile();
  const contents = await file.text();
  editor.value = contents;

}

const savefile = async () => {
 
  const writable = await fileHandle.createWritable();
  await writable.write(editor.value);
  await writable.close();
}
window.addEventListener("keydown" , e => {
if (e.key === 's' && e.metaKey) {
    e.preventDefault();
    savefile();
}

});


Open text file and Save as html file in your local device using File System Access API

https://manajmnt-code.blogspot.com/2021/04/open-text-file-and-save-as-html-file-in.html
in this exemple you can open text file from your local files in textarea and saving as html file in your in local device using File System Access API

How-to select & copy code from codemirror editor with button

https://manajmnt-code.blogspot.com/2021/04/how-to-select-copy-code-from-codemirror.html
I will be share with you how to select code in editor and copy it using javascript Method [ focus() ,execCommand("selectAll"), execCommand("copy") ]

How to add recent posts for blogger using Owl carousel library [ source code ]

https://manajmnt-code.blogspot.com/2021/04/recent-post-for-blogger-using-owl.html

In this example we learn how to create slideshow for recent posts in blogger, we use carousel library to do this, it's best library to make amazing slider

Open text (.txt) from local file and show content in textarea [ source code & demo ]

https://manajmnt-code.blogspot.com/2021/03/open-text-file-and-show-content-in.html
In this example we are using file system API to open a text file from local files and show content into textarea tag

Save textarea content to local file using file system access API [ demo & source code ]

https://manajmnt-code.blogspot.com/2021/03/save-content-from-textarea-using-file.html
in this example i will be share with you how to can save text inside textarea tag in your local files as html file using file system access API