0

I have a SP app and one of functions is to change background color but the problem is that when I choose a color in drop down there's nothing happening.

<select id ="selectColor">
    <option>Red</option>
    <option>Blue</option>
</select>

var opt = $("#selectColor");

$(document).ready(function () {
    $("#selectColor").change(function () {
        if ($(this).text == "blue") {
            document.body.style.backgroundColor = "blue";
        }
    });
});

1 Answer 1

1

It is failing here, ($(this).text == "blue"). JavaScript is case sensitive, blue != Blue. Either give your options values and evaluate the values, or do a to lower comparison.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.