how can i trigger a function in jquery option if option is already selected, i want to perform ajax function through it but control is not going to the jquery function
jquery file:-
$(document).ready(function(){
$("#value").change(function(){
alert("The text has been changed.");
});
});
html where i want to triger a jquery function i click on selected option file:--
<select id="value">
<option value="o"> SELECT-0</option>
<option value="1" selected=selected> SELECT-1</option>
<option value="2"> SELECT-2</option>
<option value="3"> SELECT-3</option>
</select>