Cita:
Iniciado por Alexis88 En un pseudo-atributo
data, coloca la dirección que deseas abrir, de este modo, cada input abrirá una página distinta.
DEMO
Saludos
Alexis para hacer esto necesitare algun enlace jQuery o libreria no ?
Código Javascript
:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento sin título</title>
</head>
<script>
var availableTags = ["PHP", "JavaScript", "CSS", "jQuery"];
$(".ejemplo").autocomplete({
source: availableTags
}).keypress(function (e) {
if (e.keyCode == 13) window.open(this.getAttribute("data-link") + "?q=" + this.value, "PopUp", "width=500, height=300");
});
</script>
<body>
Caja 1:
<input type="text" class="ejemplo" data-link="http://www.google.com" />
<br />Caja 2:
<input type="text" class="ejemplo" data-link="http://www.bing.com" />
</body>
</html>