0

I want to just expand the drop down list while on focus or on click or on enter text in text box and the focus remains should be in text box, it should just show the drop down list contents.

1 Answer 1

1
        $('#textbox').click(function (event) {
            event.stopPropagation();
        });
        $('.dropdown-menu').click(function (event) {
            event.stopPropagation();
        });
        $('.dropdown open').click(function (event) {
            event.stopPropagation();
        });

Finally i found solution for this. I found it earlier but post here after long time. Here is the code to do this

Sign up to request clarification or add additional context in comments.

Comments

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.