Will NoScript block a dropdown menu hidden behind an image?
Posted: Tue Jun 19, 2012 6:40 am
Hi,
I am a web developer. I wanted to have a fancy dropdown image for a selection list on my website. The user selects the country from where he is connecting to the site and I use that info to provide a localized version of the site to the user. I have a select box with opacity 0 and an image over it.
When the user clicks on the dropdown image, the menu will be shown. Will this action be flagged by NoScript as clickjacking? Currently it is not being flagged. But I just want to be sure that this implementation will not cause any problems.
I am a web developer. I wanted to have a fancy dropdown image for a selection list on my website. The user selects the country from where he is connecting to the site and I use that info to provide a localized version of the site to the user. I have a select box with opacity 0 and an image over it.
Code: Select all
<div class="theFancyDropdownImage">
<select style="opacity:0">
option1
option2
.
.
.
</select>
</div>