From 896803150f13e425d801c2b6ac7736587ae9b83b Mon Sep 17 00:00:00 2001 From: Parth Mittal Date: Sat, 11 Oct 2025 17:22:40 +0530 Subject: [PATCH] Added Hello World client script for Hacktoberfest --- .../Client Scripts/Hello World Alert/HelloWorld.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 Client-Side Components/Client Scripts/Hello World Alert/HelloWorld.js diff --git a/Client-Side Components/Client Scripts/Hello World Alert/HelloWorld.js b/Client-Side Components/Client Scripts/Hello World Alert/HelloWorld.js new file mode 100644 index 0000000000..8139b69f0d --- /dev/null +++ b/Client-Side Components/Client Scripts/Hello World Alert/HelloWorld.js @@ -0,0 +1,10 @@ +/** + * Title: Hello World Client Script + * Description: A simple client script that shows an alert when the form loads. + * Author: your-github-username + * Category: Client Script + */ + +function onLoad() { + alert('Hello, World! This is my first Hacktoberfest contribution 🚀'); +}