1 | <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> |
---|
2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
---|
3 | <html xmlns="http://www.w3.org/1999/xhtml"> |
---|
4 | <head> |
---|
5 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
---|
6 | <title>Untitled Document</title> |
---|
7 | <script type="text/javascript" src="/includes/ckfinder/ckfinder.js"></script> |
---|
8 | <script type="text/javascript"> |
---|
9 | function popCkFinder() { |
---|
10 | var finder = new CKFinder({ |
---|
11 | id: "filepicker-simple-editor", |
---|
12 | basePath : "/includes/ckfinder/" |
---|
13 | }); |
---|
14 | |
---|
15 | finder.popup(); |
---|
16 | } |
---|
17 | </script> |
---|
18 | </head> |
---|
19 | |
---|
20 | <body> |
---|
21 | <button type="button" onclick="popCkFinder();">Click me</button> |
---|
22 | </body> |
---|
23 | </html> |
---|