I have a website that allows users to create new content and I use javascript as a way to check for spam. If user has javascript turned off how can I hide or disable the post search button
<input type="submit" name="submitmee" id="creatingpost" value="Post" />
Is there a combination of if statements or noscripts that I can use. I have seen some examples online but they all redirect user, im trying to do something like
if(javascript== off)
{
/* please turn on javascript */
}
else
{
/* show button */
}