The variable ${window.nombre}
is a global variable that contains the id of a magazine, but it is not selected when I click the button of the magazine, it always brings me to the last value of select
.
$.ajax({
url:'MODEL/Menu_Model.php',
success:function(data){
$(".square_select_revistas").html("");
var Data=JSON.parse(data);
for (var i = 0; i < Data.length; i++) {
var select = '
<option selected="${window.nombre}" value="${Data[i].id}" >
${Data[i].nombre_revista}
</option>
'
$(".square_select_revistas").append(select);
}
}
});
var modal = '
<div class="square_modal col-sm-7">
<label>Revista</label><br>
<select id="revista"
class="square_select_revistas">
</select>
</div>
';