How to get iframe content and extract into textarea using JavaScript

https://manajmnt-code.blogspot.com/2021/04/how-to-get-iframe-content-and-extract.html
in this exemple, we learn how get content from iframe tag and extract source code inside textarea

How-to ask user to to verify or accept to remove content of div

https://manajmnt-code.blogspot.com/2021/04/how-to-ask-user-to-to-verify-or-accept.html
In this example we learn how to clear div content editable with button after ask user to verify or accept to remove content of div

How to Cut, Copy and Paste inside div tag with buttons using JavaScript

https://manajmnt-code.blogspot.com/2021/04/how-to-cut-copy-and-paste-inside-div.html
In this code I will be share with you how to copy and cut from textarea or content editable tag ,and paste text from clipboard into textarea using execCommand() method and clipboard API

How-to paste text from clipboard automatically onload page

https://manajmnt-code.blogspot.com/2021/04/how-to-paste-text-from-clipboard.html
In this example we'll learn how to paste text from clipboard automatically inside specific textarea on page is loaded, we need textarea tag and clipboard API JavaScript code to do this.
If you copied certain text, it will be pasted automatically in the text box.
in Chrome browser asks for permission

How-to create html editor with context buttons

https://manajmnt-code.blogspot.com/2021/04/how-to-create-html-editor-with-context.html
In this example i will be share with you how to create html editor with context buttons using codemirror library and JavaScript [ Document.execCommand() ]

How-to run HTML, CSS, JS code in iframe from textarea value

https://manajmnt-code.blogspot.com/2021/04/how-to-run-html-css-js-code-in-iframe.html
In this code we will be share with you how to create simple editor with preview for HTML CSS and JavaScript codes, we need textarea to write code and iframe to preview

How to Create smart autocomplete input search from blogger api using jQuery

https://manajmnt-code.blogspot.com/2021/04/how-to-create-smart-autocomplete-input.html

In this example we will need an autocomplete code from the jquery library, and the blogger api to call article titles automatically.

This code generates suggestions based on the article titles found in a specific blog, let's me show how it's work:

How to make search button in html with icon

https://manajmnt-code.blogspot.com/2021/04/how-to-make-search-button-in-html-with.html
In this lesson, we will share with you How to make search button in html with icon (font-awesome). look at this code below:

What will happen when we write something in the search box and then put pressure on the ok or the search button? When you write for example "new York" in the search box, then click OK, the URL will change to: https://www.yourdomine.com/search?q=new+york this is the role of attribute ( action="search" ) in form tag in html.

How to make search button in html for external website (YouTube)



output:

How-to make background blur using CSS backdrop-filter Property

https://manajmnt-code.blogspot.com/2021/04/how-to-make-background-blur-using-css.html
In this example we're using (CSS backdrop-filter Property) to make the background of body blur

How-to refresh specific tag without refresh page using JavaScript

https://manajmnt-code.blogspot.com/2021/04/how-to-refresh-specific-tag-without.html
in this code we learn how refresh body or specific tag after some time, to do this call the tag that you want to refreshed and innerHTML again like this code bellow
setTimeout(function(){ 
 var bodyref =  document.getElementById("div").innerHTML;
    document.getElementById("div").innerHTML = bodyref;
     }, 9000);

How-to display text on hover with CSS style (Tooltips)

https://manajmnt-code.blogspot.com/2021/04/how-to-display-text-on-hover-with-css.html
In this code, I will be share with you how to display a description of the text when you hover your mouse over the text

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") ]