Lim Woojaejaylog.hashnode.dev·May 6, 2023[JavaScript] Understanding XMLHttpRequestIntroduction This article will talk about: GET to retrieve the data POST to send the data. PUT to replace the data. DELETE to delete the data. *note. I am using the JSON-server in this article. GET Request You can use the GET method to retriev...Front-endJavaScript
bot5ambot5am.hashnode.dev·Dec 23, 2022How to Get the File Size of an Image imported by CSS Background URL Method in JavascriptThe HTML and CSS Here is the HTML <div id="hello" class="container1"></div> <div id="hello" class="container2"></div> We have two <div> elements with different classes applied to them. But they both share the same id hello The CSS: .container1 { ...169 readsxmlhttprequest