Web Wiz - Green Windows Web Hosting

  New Posts New Posts RSS Feed - JS: Copying a text to the clipboard.
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

JS: Copying a text to the clipboard.

 Post Reply Post Reply
Author
Mc Brain View Drop Down
Senior Member
Senior Member


Joined: 11 June 2002
Location: Argentina
Status: Offline
Points: 223
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mc Brain Quote  Post ReplyReply Direct Link To This Post Topic: JS: Copying a text to the clipboard.
    Posted: 13 April 2004 at 2:03pm

I want to add a javascript function to copy a specific text to the clipboard. I found this code:

<script language="javascript">
function toClipboard(){
  var text="http://www.FindYourDesire/findyourdesire/profile.php?u n=Neo";
  var copyText=text.createTextRange();
 
  return confirm("Do you want to copy the link
http://www.FindYourDesire/findyourd...file.php?un=Neo to your clipboard?
(this only works for M$IE");
  copyText.execCommand("Copy");
  alert("If using M$IE, then you have just copied the link,
http://www.FindYourDesire/findyourd...file.php?un=Neo to your clipboard.");
}
</script>

and changed it a little to what I need:

<script language="javascript">
function toClipboard(text){
  var copyText=text.createTextRange();

  copyText.execCommand("Copy");
}
</script>

Unfortunately, this doesn't work (the bold line raises the following error:

---------------------------
Error
---------------------------
A Runtime Error has occurred.
Do you wish to Debug?

Line: 3000
Error: Object doesn't support this property or method
---------------------------
Yes   No  
---------------------------

Can anyone give me a hint?

Back to Top
Mc Brain View Drop Down
Senior Member
Senior Member


Joined: 11 June 2002
Location: Argentina
Status: Offline
Points: 223
Post Options Post Options   Thanks (0) Thanks(0)   Quote Mc Brain Quote  Post ReplyReply Direct Link To This Post Posted: 13 April 2004 at 2:33pm
Nevermind... I got it already.
Back to Top
 Post Reply Post Reply

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.08
Copyright ©2001-2026 Web Wiz Ltd.


Become a Fan on Facebook Follow us on X Connect with us on LinkedIn Web Wiz Blogs
About Web Wiz | Contact Web Wiz | Terms & Conditions | Cookies | Privacy Notice

Web Wiz is the trading name of Web Wiz Ltd. Company registration No. 05977755. Registered in England and Wales.
Registered office: Web Wiz Ltd, Unit 18, The Glenmore Centre, Fancy Road, Poole, Dorset, BH12 4FB, UK.

Prices exclude VAT at 20% unless otherwise stated. VAT No. GB988999105 - $, € prices shown as a guideline only.

Copyright ©2001-2026 Web Wiz Ltd. All rights reserved.