Monday, May 13, 2024
 Popular · Latest · Hot · Upcoming
145
rated 0 times [  149] [ 4]  / answers: 1 / hits: 26580  / 12 Years ago, sat, december 29, 2012, 12:00:00

I am working on a web application that allows users to post content by tags but the thing is, how would I make a nice block around a tag if its separated by a comma and the text field value would still be the same only the view to the user would differ.



An example would be such as YouTube or StackOverflow, for now I don't need it to check a database or anything.



Thanks!


More From » jquery

 Answers
2

Something similar like Stack Overflow does:


enter



  • Allows alphanumeric and +-.# (and trims whitespaces!)

  • Convert to lowercase

  • Create automatically the Tag Box on focusOut Enter , (add more delimited by | pipe)

  • Delete Tag on click




jQuery($ => { // DOM ready and $ alias in scope.

// TAGS BOX
$(#tags input).on({
focusout() {
var txt = this.value.replace(/[^a-z0-9+-.#]/ig,''); // allowed characters
if(txt) $(<span/>, {text:txt.toLowerCase(), insertBefore:this});
this.value = ;
},
keyup(ev) {
if(/(,|Enter)/.test(ev.key)) $(this).focusout();
}
});
$(#tags).on(click, span, function() {
$(this).remove();
});

});

#tags{
float:left;
border:1px solid #ccc;
padding:5px;
font-family:Arial;
}
#tags > span{
cursor:pointer;
display:block;
float:left;
color:#fff;
background:#789;
padding:5px;
padding-right:25px;
margin:4px;
}
#tags > span:hover{
opacity:0.7;
}
#tags > span:after{
position:absolute;
content:×;
border:1px solid;
padding:2px 5px;
margin-left:3px;
font-size:11px;
}
#tags > input{
background:#eee;
border:0;
margin:4px;
padding:7px;
width:auto;
}

<div id=tags>
<span>php</span>
<span>c++</span>
<span>jquery</span>
<input type=text value= placeholder=Add a tag />
</div>

<script src=https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js></script>




[#81175] Thursday, December 27, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lawrencem

Total Points: 153
Total Questions: 102
Total Answers: 98

Location: Mauritania
Member since Sun, Oct 17, 2021
3 Years ago
;