Master Posted May 23, 2016 Report Share Posted May 23, 2016 I want to check a text input in a text field and if the value selected from another dropdown exist in there remove it. There has to be no extra spaces before or after text. Quote Link to comment Share on other sites More sharing options...
MayMusic Posted May 23, 2016 Report Share Posted May 23, 2016 You can use a code as below in the Footer of the page. When you hover over submit button function will fire <script> var address = document.getElementById('ID OF TEXT FIELD').value; var abb= document.getElementById('ID OF DROPDOWN').value; document.getElementById('Submit').onmouseover = function (){ if (address.search(document.getElementById('ID OF DROPDOWN').value) != 0){ document.getElementById('ID OF TEXT FIELD').value= document.getElementById('ID OF TEXT FIELD').value.replace(document.getElementById('ID OF DROPDOWN').value, "").trim(); } } </script> Replace IDs with appropriate IDs Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.