Hi I want to use a virtual click event to grey out the selection so that users have to choose another choice when they return to the page for a certain amount of time.
$(document).ready(function() {
$('input[type="mobileimage_9"]').click(function() {
$(this).hide().delay(45000).show();
})
})
mobileimage_9 is the virtual click in question... Do I need my page name in the top line?
with thanks