Peter Hrobardihjital.hashnode.dev·May 16, 2023Chaining events in LaravelThe Laravel event management system provides a flexible and powerful mechanism for implementing event-driven architecture in your application. It promotes decoupling, modularity, reusability, and testability while allowing for easy extensibility and ...454 readsPHP
Shiladitya Mukerjishiladitya-mukerji.hashnode.dev·Mar 13, 2023ASP.NET Web Applications: Understanding Application-Level Events Throughout the Life CycleIntroduction Any web developer must possess at least a basic knowledge of the events of a web application. Understanding the events that are present, including how and when they are called, makes the development of dynamic web pages crucially smooth ...ASP.NETASP.NET
TheMumWhoCanCodeadibathemumcoder0308.hashnode.dev·Dec 10, 2022Learning about React (Chapter II)Today I will write about the syntaxes of React that I learned about. Events Event names are camel-cased, so we need to use onClick instead of onclick that we used while making vanilla JS projects / simply to manipulate DOM. React normalizes these na...126 readsReact
Tobi Ojuolapetobiojuolape.hashnode.dev·Nov 6, 2022A simple guide to Javascript event handling in ReactIntroduction The main purpose of Javascript in web development is to handle interactions between the user and the web interface - what happens when a user fills a form or clicks a button? These interactions are usually handled through something calle...10 likes·80 readsReact