Questions tagged [mention]

For tagging users or profile in text body based on delimiters like `@` or `#` similar to Twitter or Facebook.

There are several applications that enable developers to parse text and then link to users or profiles based on delimiters such as @ or # in the text body, eg, in a textarea.

162 questions
0
votes
1 answer

Issues in javascript mention script in textarea

im trying to implement mention using (@) on a textarea that feeds from MySQL database. this is the code im using below var start=/@/ig; // @ Match var word=/@(\w+)/ig; //@abc Match …
kallo kallo
  • 27
  • 1
  • 7
0
votes
0 answers

Inconsistency on some Android mobile web browsers with tagging

I am using a jQuery plugin for allowing @mentions (tagging someone by inputing their name after an @ symbol). The plug-in can be found here (http://podio.github.io/jquery-mentions-input/), and it has been working rather well. The only issue (which…
Andy Pohl
  • 243
  • 4
  • 14
0
votes
1 answer

Showing android popout listView

I am trying to implement something similar to facebook/twitter feature which is showing a list of users when you add "@" sign. My problem is i don't know how to implement this kind of pop out or floating view . is it dialog or fragment ?
Tixeon
  • 930
  • 1
  • 12
  • 27
0
votes
0 answers

How to use mention feature in Facebook using user account id in Facebook4jar api?

I am trying to make simple code using java , I uses in this facebook4jar .I want to mention group members using their IDs numbers . I searched on web, and understood this " To make mention using member id,you should use this form @[id:0]".I am…
Spmmr
  • 85
  • 2
  • 7
0
votes
2 answers

call a function inside a jQuery plugin from outside on-click event

i am using following library for auto complete and mention username in my application. my question is that how can i trigger init: function from onClick of a anchor tag instead of writing in text area. any suggestion? Here is a function that i tried…
Muhammad Tahir
  • 2,351
  • 29
  • 25
-1
votes
1 answer

discord.js | Bot doesn't tag my channel(undefined)

I made a purge/clear command for my discord bot, but when I do /purge amount: (amount), it works fine, but the bot replies with ️ (amount) messages were deleted from undefined., which should be ️ (amount) messages were deleted from #moderator-only..…
Solid Coder
  • 53
  • 2
  • 8
-1
votes
1 answer

Discord.py how to mention/show username of someone who used the command?

https://i.stack.imgur.com/QaZh7.png Discord.py how to mention/show the username of someone who used the command? As you can see in the image it says "you cleared ... messages". I want it to say "@Jonathan#9999" or "Jonathan" cleared ... messages.…
-1
votes
1 answer

Bot not detecting server members (Discord.py)

I have a command that I made to choose a random member for the server, but for some reason, whenever I run it, it only mentions itself.. As if it cannot detect that there are other members in the server besides itself. Here is the code: ok client =…
-1
votes
1 answer

How to detect mentions/hashtags when user is typing

I am trying to create a web app that is similar to Facebook and I was wondering how I can detect mentions/hashtags as the user is typing into an input field? For example, when they write "@jo", I want to create an autocomplete feature that will have…
Bob
  • 741
  • 2
  • 9
  • 18
-1
votes
1 answer

How @mention works, how can I find mention during comment in .Net

I need to know how mention works, how should find mentions during a text. are we must to find first of '@' and last of not @"^[a-zA-Z0-9_,]+$" thank you for sharing your experience string comment=" hi @fri.tara3^"; mention is : "@fri.tara3"
ara
  • 131
  • 1
  • 1
  • 8
-2
votes
1 answer

Using Regex to define variables with Discord.js?

I was advised to use regex with this discord.js project. It saves two mentions from a message into two variables in the order the two mentions are typed. Discord.js reads mentions in the numeric order of the actual IDs, not the actual typed order,…
-2
votes
2 answers

Implementation of an @mention (tagging friends) using web2py framework

How can I implement facebook @mention like tagging feature in a web2py application. I have to find user names written after "@" in a text form and give suggestions based on what user has typed till then.
1 2 3
10
11