Posted on 28th April 2025|40 views
how to copy to clipboard using jquery?
Posted on 28th April 2025| views
Clip method works only on hyperlinks:
function copy (str)
{
window.clipboardData.setData('Txt',str);
}