Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
oncopy.js
Package: MiniCA2.rar [view]
Upload User: dengkfang
Upload Date: 2008-12-30
Package Size: 5233k
Code Size: 1k
Category:
CA program
Development Platform:
Visual C++
- // Hook-up to the document.body.oncopy event,
- // or in the <body>'s "oncopy" attribute.
- // Author: Heath Stewart
- function copyCode()
- {
- try
- {
- var range = document.selection.createRange();
- if (document.selection.type != "none")
- {
- var parent = range.parentElement();
- var parentName = parent.tagName;
- if (parentName != null)
- {
- if (parentName.toLowerCase() == "pre")
- {
- // Replace superfluous <br> tags in a <pre> block.
- var re = /<br>/gi;
- var code = range.htmlText.replace(re, "rn");
- // Replace non-breaking spaces.
- re = / /gi;
- code = code.replace(re, " ");
- // Replace & characters.
- re = /&/gi;
- code = code.replace(re, "&");
- // Replace < characters.
- re = /</gi;
- code = code.replace(re, "<");
- // Replace > characters.
- re = />/gi;
- code = code.replace(re, ">");
- // CJM: Remove colorization
- re = /</?span([^>])*>/gi;
- code = code.replace(re, "");
- if (code != null)
- {
- window.event.returnValue = false;
- window.clipboardData.setData("Text", code);
- }
- }
- }
- }
- }
- catch(e) {}
- }