HTML:
<!doctype html>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html lang = "en">
<head>
<meta charset = "utf-8">
<title>jQuery UI Autocomplete functionality</title>
<link href = "https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css"
rel = "stylesheet">
<script src = "https://code.jquery.com/jquery-1.10.2.js"></script>
<script src = "https://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<!-- Javascript -->
<script>
$(function() {
var availableTutorials = [
<c:forEach items="${showImp}" var="listaTmp">
"${listaTmp.nome} ${listaTmp.cognome}",
</c:forEach>
];
$( "#automplete-1" ).autocomplete({
source: availableTutorials
});
});
</script>
<script type="text/javascript">
var labelID;
$('label').click(function() {
labelID = $(this).attr('for');
$('#'+labelID).trigger('click');
});
alert(labelID);
</script>
</head>
<body>
<!-- HTML -->
<div class = "ui-widget">
<!-- <form name="prova" onclick="prendi()"> -->
<label for = "automplete-1">Tags: </label>
<input id = "automplete-1">
</div>
</body>
</html>
Salve a tutti, vi allego la pagina html dove sto cercando di prendere dalla label un dato che il mio utente selezoinerà dopo che sarà avvenuto la ricerca instantanea, solo che non riesco a fargli capire di prendere i dati da questa label, come faccio? Grazie mille per l'aiuto