<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Daksh Saini</title>
    <description>The latest articles on DEV Community by Daksh Saini (@narender_saini_2b2a5e117c).</description>
    <link>https://dev.to/narender_saini_2b2a5e117c</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3875177%2F1319a15f-94a2-484c-939d-cf8581ffeae6.webp</url>
      <title>DEV Community: Daksh Saini</title>
      <link>https://dev.to/narender_saini_2b2a5e117c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/narender_saini_2b2a5e117c"/>
    <language>en</language>
    <item>
      <title>Useless</title>
      <dc:creator>Daksh Saini</dc:creator>
      <pubDate>Sun, 12 Apr 2026 16:52:56 +0000</pubDate>
      <link>https://dev.to/narender_saini_2b2a5e117c/useless-2814</link>
      <guid>https://dev.to/narender_saini_2b2a5e117c/useless-2814</guid>
      <description>&lt;p&gt;What I Built&lt;br&gt;
I built a completely useless and annoying button .&lt;br&gt;
Whenever you try to click it, the button runs away from your cursor!&lt;br&gt;
This project is intentionally designed to solve absolutely no problem. Instead, it creates a fun and frustrating experience for the user. The goal was to make something silly that makes people laugh and think, “Why would anyone build this?” &lt;br&gt;
Demo&lt;br&gt;
Try clicking the button… if you can &lt;br&gt;
Code&lt;br&gt;
Here is the full code for the project:&lt;br&gt;
HTML&lt;br&gt;
How I Built It&lt;br&gt;
HTML for the basic structure&lt;br&gt;
CSS for styling and positioning&lt;br&gt;
JavaScript to make the button run away randomly&lt;br&gt;
Whenever the user moves their cursor over the button, JavaScript instantly changes its position to a random location on the screen. This makes it nearly impossible to click.&lt;br&gt;
Prize Category&lt;br&gt;
Community Favorite 🏆&lt;br&gt;
Because this project is simple, funny, and guaranteed to confuse and entertain users. It perfectly fits the spirit of April Fools by being completely useless yet oddly fun.&lt;br&gt;
🔥 Tags:&lt;/p&gt;
&lt;h1&gt;
  
  
  devchallenge #html #css #javascript #fun #webdev
&lt;/h1&gt;

&lt;p&gt;My Code&lt;/p&gt;

&lt;p&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;/p&gt;






Useless Button



body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  overflow: hidden;
}

button {
  position: absolute;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  background: red;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: yellow;
  color: black;
}




&lt;p&gt;Click Me &lt;/p&gt;

&lt;p&gt;function moveBtn(btn) {&lt;br&gt;
  btn.style.top = Math.random() * window.innerHeight + "px";&lt;br&gt;
  btn.style.left = Math.random() * window.innerWidth + "px";&lt;br&gt;
}&lt;/p&gt;





</description>
      <category>devchallenge</category>
      <category>418challenge</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
