{ "version": "https://jsonfeed.org/version/1.1", "user_comment": "This feed allows you to read the posts from this site in any feed reader that supports the JSON Feed format. To add this feed to your reader, copy the following URL -- https://basescripts.com/category/tutorial/feed/json -- and add it your reader.", "home_page_url": "https://basescripts.com/category/tutorial", "feed_url": "https://basescripts.com/category/tutorial/feed/json", "language": "en-US", "title": "Tutorial – Coding Help Tips Resources Tutorials", "description": "Google Apps Scripts and Web Development Tutorials and Resources by Laurence Svekis", "icon": "https://i0.wp.com/basescripts.com/wp-content/uploads/2023/02/cropped-logoBasescripts.png?fit=512%2C512&ssl=1", "items": [ { "id": "https://basescripts.com/?p=19438", "url": "https://basescripts.com/e-keycode-is-deprecated-how-to-fix-key-event-issues-in-javascript", "title": "e.keyCode is Deprecated: How to Fix Key Event Issues in JavaScript", "content_html": "If you\u2019re working on a JavaScript project that involves handling keyboard events, you may have encountered an issue where e.keyCode no longer works. This is because e.keyCode has been deprecated and is no longer recommended for use in modern JavaScript. Instead, you should use e.key, which provides a more readable and maintainable way to detect ... Read more", "content_text": "If you\u2019re working on a JavaScript project that involves handling keyboard events, you may have encountered an issue where e.keyCode no longer works. This is because e.keyCode has been deprecated and is no longer recommended for use in modern JavaScript. Instead, you should use e.key, which provides a more readable and maintainable way to detect ... Read more", "date_published": "2025-01-31T15:43:00+00:00", "date_modified": "2025-01-31T15:43:04+00:00", "authors": [ { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" } ], "author": { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" }, "image": "https://i0.wp.com/basescripts.com/wp-content/uploads/2025/01/image-48.png?fit=1024%2C1024&ssl=1", "tags": [ "JavaScript", "JavaScript DOM lessons", "Tutorial" ] }, { "id": "https://basescripts.com/?p=18925", "url": "https://basescripts.com/building-a-simple-web-form-to-create-posts-using-the-fetch-api", "title": "Building a Simple Web Form to Create Posts Using the Fetch API", "content_html": "Forms are an essential part of any web application, enabling users to input and submit data. In this blog post, we\u2019ll walk through creating a simple HTML form that captures user input and submits it to a server using the fetch API. The example leverages https://jsonplaceholder.typicode.com/posts as a test API endpoint for demonstration. Features of ... Read more", "content_text": "Forms are an essential part of any web application, enabling users to input and submit data. In this blog post, we\u2019ll walk through creating a simple HTML form that captures user input and submits it to a server using the fetch API. The example leverages https://jsonplaceholder.typicode.com/posts as a test API endpoint for demonstration. Features of ... Read more", "date_published": "2025-01-15T22:08:07+00:00", "date_modified": "2025-01-15T22:08:10+00:00", "authors": [ { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" } ], "author": { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" }, "image": "https://i0.wp.com/basescripts.com/wp-content/uploads/2025/01/image-21.png?fit=1116%2C1048&ssl=1", "tags": [ "AJAX", "JavaScript", "Learning", "Tutorial" ] }, { "id": "https://basescripts.com/?p=18922", "url": "https://basescripts.com/how-to-create-a-new-post-using-javascript-and-the-fetch-api", "title": "How to Create a New Post Using JavaScript and the Fetch API", "content_html": "Sending data to a server is a crucial aspect of modern web applications. Whether you’re submitting a form, saving user preferences, or creating a new resource, the fetch API provides a straightforward way to send data via a POST request. In this blog post, we\u2019ll build a webpage where users can create a new post ... Read more", "content_text": "Sending data to a server is a crucial aspect of modern web applications. Whether you’re submitting a form, saving user preferences, or creating a new resource, the fetch API provides a straightforward way to send data via a POST request. In this blog post, we\u2019ll build a webpage where users can create a new post ... Read more", "date_published": "2025-01-15T21:23:00+00:00", "date_modified": "2025-01-15T21:23:03+00:00", "authors": [ { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" } ], "author": { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" }, "image": "https://i0.wp.com/basescripts.com/wp-content/uploads/2025/01/image-20.png?fit=723%2C586&ssl=1", "tags": [ "JavaScript", "JavaScript DOM lessons", "Learning", "Tutorial" ] }, { "id": "https://basescripts.com/?p=18919", "url": "https://basescripts.com/how-to-fetch-and-display-api-data-on-your-website", "title": "How to Fetch and Display API Data on Your Website", "content_html": "Fetching data from an API and displaying it on a webpage is a foundational skill for any web developer. In this blog post, we\u2019ll guide you through a simple example of fetching data from a REST API and dynamically outputting it on your webpage using JavaScript. This example covers: Let\u2019s dive into the implementation! The ... Read more", "content_text": "Fetching data from an API and displaying it on a webpage is a foundational skill for any web developer. In this blog post, we\u2019ll guide you through a simple example of fetching data from a REST API and dynamically outputting it on your webpage using JavaScript. This example covers: Let\u2019s dive into the implementation! The ... Read more", "date_published": "2025-01-15T21:16:24+00:00", "date_modified": "2025-01-15T21:16:28+00:00", "authors": [ { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" } ], "author": { "name": "Laurence Svekis", "url": "https://basescripts.com/author/discoveryvip", "avatar": "https://secure.gravatar.com/avatar/ae13e7166b2d48551742e3f86b837362f2627bf4f7f8038b3d6793fda8dc536c?s=512&d=mm&r=g" }, "image": "https://i0.wp.com/basescripts.com/wp-content/uploads/2025/01/image-19.png?fit=1024%2C1024&ssl=1", "tags": [ "Code Snippet", "Coding Exercise", "JavaScript", "JavaScript DOM lessons", "Learning", "Tutorial" ] } ] }