How to select option when after select an option? – Jquery ajax
I want to select the option city_id only 2 when after select a country value is = 1 , But I did not successfully. HTML: <select id="country_id"> <option></option> @foreach($countries as $country) <option value="{{ $country->id }}"> {{ $country->name }} </option> @endforeach…