this post was submitted on 13 Sep 2026
15 points (100.0% liked)

Web Development

5827 readers
26 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 3 years ago
MODERATORS
 

The buttons are supposed to only be clicked when someone completes a series of tasks, bots clicking the buttons throws off the count. I don’t have my own domain it is nested under the main neocities.org domain.

top 5 comments
sorted by: hot top controversial new old
[–] ArsonButCute@programming.dev 2 points 17 hours ago

Are you hosting on your own machine or server? If so, you can add some buttons that are hidden such that only bots can see them and ban anything that clicks them.

I'm not sure personally how you'd manage it with html+css with no client side scripting, but my theory is to just move your 'I'm a bot' indicator button way off screen with css, or render it invisible and super small so it's unlikely a human could ever find it.

[–] e0qdk@reddthat.com 9 points 2 days ago (1 children)

Are your buttons actually buttons or just styled links? If the latter, try making them actual buttons in a form with method POST. Not a guarantee that rude software won't trigger it, but it's less likely to be done by accident.

[–] reallykindasorta@slrpnk.net 4 points 2 days ago (1 children)

Good call they’re styled links, I will give that a try!

[–] onlinepersona@programming.dev 1 points 2 days ago* (last edited 2 days ago)

If they are styled dive that listen to a click event with JavaScript, that could also prevent them from "clicking" it.

[–] TrickDacy@lemmy.world 2 points 2 days ago

You have buttons on your website, which write data somewhere that matters, without any authentication shielding them from being clicked by unexpected bots/people? If no authentication, this is bound to happen bot or otherwise.