How Can I Dynamically Add An HREF As A Field Is Filled Out?
I am building a tool the builds URLs. One field in this tool is where the user enters the campaign ID. This ID corresponds to a campaign ID in our project management platform. What
Solution 1:
It is a typo. document.getElementByID
should be document.getElementById
. You can easily spot it from the console.
37:27 Uncaught TypeError: document.getElementByID is not a function
Working fiddle:
Post a Comment for "How Can I Dynamically Add An HREF As A Field Is Filled Out?"