Wednesday, 01 Nov, 2023 -377

How to clear select2 selected value in js

Clearing the selected value in select2 using JavaScript

The code in JSFiddle can be used with a remote data source and still allow for clearing a Select2 input. One solution is to set the select2 option to blank HTML. Another solution is to retrieve the saved value from the array and clear it. According to the documentation, it is also possible to clear the input by setting the value to an empty string. One example of this implementation is provided in the elaboration.


How to clear select2 dropdown?

Solution 1:

$("#exam_type_id").val('').trigger("change");

Tags
Most Popular
img
How to install WordPress
02 Apr, 2024 view: 1889
img
Xampp Tutorial Create Your Own Local Test Server
02 Apr, 2024 view: 770
img
How to Install Laravel
02 Apr, 2024 view: 759
img
PHP is not recognized as an internal or external command
02 Apr, 2024 view: 558
img
How to Install Composer on Windows
01 Apr, 2024 view: 543
img
Summernote image upload
01 Nov, 2023 view: 496
img
How to clear select2 selected value in js
01 Nov, 2023 view: 377
img
Zipping and Unzipping Files in Linux
02 Apr, 2024 view: 343
img
How to add Datepicker in Bootstrap
26 Apr, 2024 view: 337
img
How to Import a MySQL Database using Command Line
02 Apr, 2024 view: 328
img
How to Installation Laragon
01 Apr, 2024 view: 179
img
How to Installing an SSL certificate on your server using cPanel
06 Apr, 2024 view: 147
img
Paypal Payment Gateway Integration With Laravel
06 Apr, 2024 view: 120
img
How to Use Laravel Middleware to Protect Your Application
09 Apr, 2024 view: 106
img
Laravel Cache Clear Command Php Artisan Optimize
09 Apr, 2024 view: 106
img
why important website development learn
10 Apr, 2024 view: 104
img
Laravel Authentication Tutorial
09 Apr, 2024 view: 103
img
How to Integrate Stripe Payment in Laravel
06 Apr, 2024 view: 101
img
laravel qr code generator package
18 Apr, 2024 view: 94
Trending