Skip to content
Advertisement

Using variable outside of a javascript function

I am redesigning the select dropdown of a site and I am using a jQuery plugin called ddSlick. However, I can’t seem to capture a variable I need outside its function.

In the code below I can’t seem to have the second console.log(build) show what I get in the first console.log(build). I get undefined. What could I be doing wrong?

JavaScript

Advertisement

Answer

You need to define the build variable in scope of both functions:

JavaScript

An important note here is that this logic relies on #demo-htmlselect triggering a change event before #demo does. As such, you may need to write some validation logic to deal with this restriction.

With that in mind I would suggest combining the event handlers in to one and checking the state of both dropdowns in there, something like this:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement