Can I open the OS native emoji picker in a web page? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag?Capturing TAB key in text boxTrigger a button click with JavaScript on the Enter key in a text boxGet the size of the screen, current web page and browser windowBest way to restrict a text field to numbers only?How can I refresh a page with jQuery?JQuery Emoji pickerMake a Span open and close an In-Line Bootstrap Date Picker CalendarMagnify/de-magnify page text via two buttonsHow to emulate an enter key just cliking a button?Browser build-in emoji picker
Diagram with tikz
How do I keep my slimes from escaping their pens?
Is there a "higher Segal conjecture"?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
Why did the IBM 650 use bi-quinary?
Should I discuss the type of campaign with my players?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
How to find all the available tools in macOS terminal?
What causes the vertical darker bands in my photo?
How can I fade player when goes inside or outside of the area?
Stars Make Stars
Is there a concise way to say "all of the X, one of each"?
How discoverable are IPv6 addresses and AAAA names by potential attackers?
If 'B is more likely given A', then 'A is more likely given B'
What are 'alternative tunings' of a guitar and why would you use them? Doesn't it make it more difficult to play?
Bonus calculation: Am I making a mountain out of a molehill?
What is this single-engine low-wing propeller plane?
Why does Python start at index -1 when indexing a list from the end?
What happens to sewage if there is no river near by?
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
When -s is used with third person singular. What's its use in this context?
How to do this path/lattice with tikz
If a contract sometimes uses the wrong name, is it still valid?
The logistics of corpse disposal
Can I open the OS native emoji picker in a web page?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?Capturing TAB key in text boxTrigger a button click with JavaScript on the Enter key in a text boxGet the size of the screen, current web page and browser windowBest way to restrict a text field to numbers only?How can I refresh a page with jQuery?JQuery Emoji pickerMake a Span open and close an In-Line Bootstrap Date Picker CalendarMagnify/de-magnify page text via two buttonsHow to emulate an enter key just cliking a button?Browser build-in emoji picker
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I know there are lots of javascript plugins and libraries to allow users to pick emojis for text inputs, but windows and mac already have native emoji pickers (⊞ Win. or CTRL⌘Space), Is there a way for me to open these native emoji pickers when a user clicks in a text field instead of installing plugins in my website?
I already tried emulate button key press, but it didn't work at all.
javascript html
|
show 3 more comments
I know there are lots of javascript plugins and libraries to allow users to pick emojis for text inputs, but windows and mac already have native emoji pickers (⊞ Win. or CTRL⌘Space), Is there a way for me to open these native emoji pickers when a user clicks in a text field instead of installing plugins in my website?
I already tried emulate button key press, but it didn't work at all.
javascript html
4
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
7
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
3
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
1
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
1
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32
|
show 3 more comments
I know there are lots of javascript plugins and libraries to allow users to pick emojis for text inputs, but windows and mac already have native emoji pickers (⊞ Win. or CTRL⌘Space), Is there a way for me to open these native emoji pickers when a user clicks in a text field instead of installing plugins in my website?
I already tried emulate button key press, but it didn't work at all.
javascript html
I know there are lots of javascript plugins and libraries to allow users to pick emojis for text inputs, but windows and mac already have native emoji pickers (⊞ Win. or CTRL⌘Space), Is there a way for me to open these native emoji pickers when a user clicks in a text field instead of installing plugins in my website?
I already tried emulate button key press, but it didn't work at all.
javascript html
javascript html
edited Apr 2 at 8:39
James Coyle
5,75911838
5,75911838
asked Mar 8 at 16:25
bemontibellerbemontibeller
488214
488214
4
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
7
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
3
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
1
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
1
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32
|
show 3 more comments
4
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
7
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
3
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
1
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
1
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32
4
4
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
7
7
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
3
3
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
1
1
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
1
1
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32
|
show 3 more comments
1 Answer
1
active
oldest
votes
Short answer is no.
In order to access any OS feature from javascript, you need a corresponding browser API to support.
AFAIK, there isn't an API for that. There's a discussion here which suggests adding <input emoji />
to standard but seems no traction gained.
Edit: Below is my original answer, revised. Comments pointed out I was focusing on the wrong aspect of the question, I totally agree.
However, the OP obviously has some wrong idea about what you can do in javascript to leverage browser ability. So I think it's still worth clarification.
You can't send arbitrary emulated keyboard event from js and hoping the OS will respond. Were it possible, it'd be a severe security issue on browser's part. Imagine open a website and it fires a series of keyboard event to your OS and wipes out your desktop (totally feasible through shortcuts).
You need to understand the runtime env inside the browser is basically isolated from the one of native OS. Whatever OS feature that's accessible to your javascript is totally up for browser vendors to decide. For security reason, they are super careful in making these decisions.
Also, make a distinction on "what browser can do", and "what browser allows you to do in js". Seeing Chrome has an "Emoji & Symbols" context menu item, doesn't necessarily mean it decides to grant you the same ability in js.
To further clarify why the emulated keyboard event is fundamentally different from the native one, I include a graph here. The blue arrow is how emulated keyboard event flows. The farthest place it can reach is the browser's internal event bus. It never got a chance to reach the OS event bus, so no way to notify native emoji picker.
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an inputtype
doesn't exist.
– Federico klez Culloca
Apr 2 at 8:31
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55067185%2fcan-i-open-the-os-native-emoji-picker-in-a-web-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Short answer is no.
In order to access any OS feature from javascript, you need a corresponding browser API to support.
AFAIK, there isn't an API for that. There's a discussion here which suggests adding <input emoji />
to standard but seems no traction gained.
Edit: Below is my original answer, revised. Comments pointed out I was focusing on the wrong aspect of the question, I totally agree.
However, the OP obviously has some wrong idea about what you can do in javascript to leverage browser ability. So I think it's still worth clarification.
You can't send arbitrary emulated keyboard event from js and hoping the OS will respond. Were it possible, it'd be a severe security issue on browser's part. Imagine open a website and it fires a series of keyboard event to your OS and wipes out your desktop (totally feasible through shortcuts).
You need to understand the runtime env inside the browser is basically isolated from the one of native OS. Whatever OS feature that's accessible to your javascript is totally up for browser vendors to decide. For security reason, they are super careful in making these decisions.
Also, make a distinction on "what browser can do", and "what browser allows you to do in js". Seeing Chrome has an "Emoji & Symbols" context menu item, doesn't necessarily mean it decides to grant you the same ability in js.
To further clarify why the emulated keyboard event is fundamentally different from the native one, I include a graph here. The blue arrow is how emulated keyboard event flows. The farthest place it can reach is the browser's internal event bus. It never got a chance to reach the OS event bus, so no way to notify native emoji picker.
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an inputtype
doesn't exist.
– Federico klez Culloca
Apr 2 at 8:31
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
add a comment |
Short answer is no.
In order to access any OS feature from javascript, you need a corresponding browser API to support.
AFAIK, there isn't an API for that. There's a discussion here which suggests adding <input emoji />
to standard but seems no traction gained.
Edit: Below is my original answer, revised. Comments pointed out I was focusing on the wrong aspect of the question, I totally agree.
However, the OP obviously has some wrong idea about what you can do in javascript to leverage browser ability. So I think it's still worth clarification.
You can't send arbitrary emulated keyboard event from js and hoping the OS will respond. Were it possible, it'd be a severe security issue on browser's part. Imagine open a website and it fires a series of keyboard event to your OS and wipes out your desktop (totally feasible through shortcuts).
You need to understand the runtime env inside the browser is basically isolated from the one of native OS. Whatever OS feature that's accessible to your javascript is totally up for browser vendors to decide. For security reason, they are super careful in making these decisions.
Also, make a distinction on "what browser can do", and "what browser allows you to do in js". Seeing Chrome has an "Emoji & Symbols" context menu item, doesn't necessarily mean it decides to grant you the same ability in js.
To further clarify why the emulated keyboard event is fundamentally different from the native one, I include a graph here. The blue arrow is how emulated keyboard event flows. The farthest place it can reach is the browser's internal event bus. It never got a chance to reach the OS event bus, so no way to notify native emoji picker.
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an inputtype
doesn't exist.
– Federico klez Culloca
Apr 2 at 8:31
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
add a comment |
Short answer is no.
In order to access any OS feature from javascript, you need a corresponding browser API to support.
AFAIK, there isn't an API for that. There's a discussion here which suggests adding <input emoji />
to standard but seems no traction gained.
Edit: Below is my original answer, revised. Comments pointed out I was focusing on the wrong aspect of the question, I totally agree.
However, the OP obviously has some wrong idea about what you can do in javascript to leverage browser ability. So I think it's still worth clarification.
You can't send arbitrary emulated keyboard event from js and hoping the OS will respond. Were it possible, it'd be a severe security issue on browser's part. Imagine open a website and it fires a series of keyboard event to your OS and wipes out your desktop (totally feasible through shortcuts).
You need to understand the runtime env inside the browser is basically isolated from the one of native OS. Whatever OS feature that's accessible to your javascript is totally up for browser vendors to decide. For security reason, they are super careful in making these decisions.
Also, make a distinction on "what browser can do", and "what browser allows you to do in js". Seeing Chrome has an "Emoji & Symbols" context menu item, doesn't necessarily mean it decides to grant you the same ability in js.
To further clarify why the emulated keyboard event is fundamentally different from the native one, I include a graph here. The blue arrow is how emulated keyboard event flows. The farthest place it can reach is the browser's internal event bus. It never got a chance to reach the OS event bus, so no way to notify native emoji picker.
Short answer is no.
In order to access any OS feature from javascript, you need a corresponding browser API to support.
AFAIK, there isn't an API for that. There's a discussion here which suggests adding <input emoji />
to standard but seems no traction gained.
Edit: Below is my original answer, revised. Comments pointed out I was focusing on the wrong aspect of the question, I totally agree.
However, the OP obviously has some wrong idea about what you can do in javascript to leverage browser ability. So I think it's still worth clarification.
You can't send arbitrary emulated keyboard event from js and hoping the OS will respond. Were it possible, it'd be a severe security issue on browser's part. Imagine open a website and it fires a series of keyboard event to your OS and wipes out your desktop (totally feasible through shortcuts).
You need to understand the runtime env inside the browser is basically isolated from the one of native OS. Whatever OS feature that's accessible to your javascript is totally up for browser vendors to decide. For security reason, they are super careful in making these decisions.
Also, make a distinction on "what browser can do", and "what browser allows you to do in js". Seeing Chrome has an "Emoji & Symbols" context menu item, doesn't necessarily mean it decides to grant you the same ability in js.
To further clarify why the emulated keyboard event is fundamentally different from the native one, I include a graph here. The blue arrow is how emulated keyboard event flows. The farthest place it can reach is the browser's internal event bus. It never got a chance to reach the OS event bus, so no way to notify native emoji picker.
edited Apr 2 at 12:46
Zarna Borda
33510
33510
answered Apr 2 at 7:43
hackapehackape
1,743415
1,743415
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an inputtype
doesn't exist.
– Federico klez Culloca
Apr 2 at 8:31
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
add a comment |
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an inputtype
doesn't exist.
– Federico klez Culloca
Apr 2 at 8:31
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
3
3
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (
<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an input type
doesn't exist.– Federico klez Culloca
Apr 2 at 8:31
"it'd be a severe security issue on browser's part" only if you don't see "emoji picker" as a specialized keyboard. I mean, there is a way to instruct the browser to show a numeric keypad instead of a standard keyboard (
<input type="number">
), so I wouldn't assume there is an inherent security risk. It's just that such an input type
doesn't exist.– Federico klez Culloca
Apr 2 at 8:31
1
1
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
^ Agreed. The "you can't" conclusion may well be correct, but the reasoning is overboard. There's simply no API for this would be sufficient; it could be done in a perfectly secure way.
– deceze♦
Apr 2 at 8:33
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
Well, I agree, no API for that is the answer. I might be focusing on the wrong aspect. but OP seem have some very wrong idea on what you can do about script emulated event. Just wanna clarify on that.
– hackape
Apr 2 at 8:38
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
@FedericoklezCulloca I think he meant it would be an issue to let JS code execute key commands, not to open the emoji keyboard.
– Oscar Arranz
Apr 2 at 15:39
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55067185%2fcan-i-open-the-os-native-emoji-picker-in-a-web-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
i dont think its possible.
– Daniel A. White
Mar 8 at 16:27
7
Nope, you can't. AFAIK that's not possible because there's simply no standardized API for that. You probably has to open your own modal populated with your own selection of emojis.
– Terry
Mar 8 at 16:28
3
I see, that's frustrating. Thank you, guys!
– bemontibeller
Mar 8 at 16:29
1
If we can get windows button and . buttons ascii values then it is possible but unfortunately we dont have windows button ascii value.
– Arjun
Mar 27 at 10:27
1
Something else you can try is to just loop through the emoji list and add everything to the page with a picker or something. It would require minimal JavaScript and would work just al well but without any platform dependency issues.
– Joeri
Mar 29 at 21:32