Skip to content
Advertisement

Swap a select text with javascript?

I have a example code here:

JavaScript
JavaScript

I want to swap se1 and se2 . Here is my code i tried:

JavaScript
JavaScript

It’s work but it require Jquery 1.2.3 but i want to use Jquery 2.1.3. If i change script url to “https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js” but it isn’t work

Thanks for help!

Advertisement

Answer

You shouldn’t be swapping the values or the text of the two selected items in the lists. You just need to swap which item is selected in each list. Once that is done, that option will have whatever value the list has set up for it.

The version of JQuery you use here doesn’t matter since what you are doing requires JQuery operations that have been in JQuery since the beginning.

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