Mobile app version of vmapp.org
Login or Join
Jennifer507

: Hidden form and SEO I'm using hidden forms, to collects some statistics. Will it have any penalty from search engines ? Update 1: I'm collecting some statistics, based on user interaction with

@Jennifer507

Posted in: #Forms #RubyOnRails #Seo

I'm using hidden forms, to collects some statistics.

Will it have any penalty from search engines ?

Update 1:

I'm collecting some statistics, based on user interaction with my website. For example, POST requests will be sent to server, when:


user stops a playing video
user has watched a video till it's end
etc.


Using form_remote_for in Rails, i'm just rendering the form and keep it invisible.

The reason on doing that - is to utilize authencity tokens, and just have less to code. Via JavaScript i'm only filling some hidden fields up and initiating form submission.

10.05% popularity Vote Up Vote Down


Login to follow query

More posts by @Jennifer507

5 Comments

Sorted by latest first Latest Oldest Best

 

@Barnes591

Not only do you render the form, but you also interact with it through JavaScript. I don't think it will have any kind of adverse effect on your ranking, if that's what you're concerned with.

And if you have content that is generated through JavaScript, especially AJAX, then it will not be crawled unless you specifically tell it to.

10% popularity Vote Up Vote Down


 

@Kimberly868

Anything hidden is perceived as a threat. You website might be indicated as a suspicious and than you will lose potential clients or visitors.

10% popularity Vote Up Vote Down


 

@Pope3001725

It doesn't seem like this would be a problem as I don't see this form containing any kind of content that might be possibly used to benefit your rankings. But if you're using JavaScript to populate and submit the form why not go all the way and use JavaScript to capture the data and submit it via Ajax so there is no hidden form necessary?

10% popularity Vote Up Vote Down


 

@Margaret670

How would you like your website to show up in search results with a little note that says, "Warning: this site may harm your computer"?

Now ask yourself if you can be 100% certain that google won't accidentally think your devious tactics are meant to harm their users in some way.

In brief: yes, I do think there is some potential for this practice to backfire.

10% popularity Vote Up Vote Down


 

@Angela700

As John commented, this seems an odd approach, but there are two things to consider:


Search engines can't fill out forms - but they can/do try to submit with what they algorithmically calculate will be correct information for given labels/inputs to get to the 'walled garden'.
Hidden forms could be seen as not serving your website visitors in their best interests, which Google takes a dim view of (if they discover you doing it), as this requires some active submission - there's much better ways of doing this - using cookie tracking or session data etc.


Definitely worth reconsidering your approach.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme