Skip to main content
Level 9
October 17, 2014
Question

Forms 2.0 Not allow submit

  • October 17, 2014
  • 2 replies
  • 1034 views
I have a question in a form "are you a job seeker" if they choose yes that's where the form ends - the later fields aren't visible. HOWEVER, is there a way to make is so if they select yes the submit is grayed out and a message pops up taking them to a different page?
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

2 replies

kpara3-2Author
Level 9
October 17, 2014
Or have text change on the submit button depending on that question?
Kenny_Elkington
Adobe Employee
Adobe Employee
October 17, 2014
Hey Kim,

You can do this with javascript.

<script>
$("#myfieldid").change(function() {
if (this.checked){
window.location.href = 'example.com' //do this if you just want to change the page
//or do other stuff here if you want to show a pop up or saomething else
}
});
</script>