android - How to allow copy and paste from an ionic webview? -


i using ionic , cordova build hybrid application.

however, can't copy text of webviews. android phone or browser, copying text not work. selecting text , dragging pointer nothing.

this occurs instance basic app generated ionic start myapp tabs.

simply put, how can allow users copy-paste?

make ion-content overflow-scroll="true" , add class copyable text

.selectable{     -webkit-user-select: auto; } 

you cannot copy clipboard javascript programmatically. can done native side via plugin cordovaclipboard


Comments

Popular posts from this blog

What can cause "Required Package 'IndyCore' not found" when compiling a Delphi 2010 project? -

Change the color of an oval at click in Java AWT -