with plugin para paginas español create crear jquery jquery-plugins

para - jquery plugins español



jQuery TextExt Plugin: agregue la etiqueta después de presionar la tecla "espacio" y haga clic en algún botón (1)

Hola.

jQuery("#myInputTags") .textext({ plugins: ''tags, prompt'', prompt: ''add tag'' }) .keypress(function(event){ //''Space'' key is pressed in keyboard if(event.which==32){ addTag(); } }); jQuery("#btnId").click(function(){ addTag(); }) function addTag(){ //Take the value from text input var tag = $(''#myInputTags'').val(); //Clear the text input and add tag $(''#myInputTags'').val('''').textext()[0] .tags().addTags([tag]); }

Vea una demostración en vivo de esto

Documentos: TexExt - Agregar etiquetas directamente

Tengo una entrada

<input type="text" style="width:200px" id="myInputTags" placeholder="add tag" /> <input type="button" id="btnId" />

en script

jQuery("#myInputTags").textext({ plugins: ''tags'' });

ahora cuando presiono Enter en esta entrada, se crea la etiqueta, pero quiero agregar estas etiquetas luego de hacer clic en mi botón y luego de presionar la tecla "espacio" alguna propuesta.