server/php/basic/public_html/static/lib/ckeditor/samples/jquery.html
author rougeronj
Thu, 18 Jun 2015 16:54:57 +0200
changeset 504 3329b413db18
permissions -rw-r--r--
add the new client libraries server side
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
504
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     1
<!DOCTYPE html>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     2
<!--
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     3
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     4
For licensing, see LICENSE.md or http://ckeditor.com/license
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     5
-->
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     6
<html>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     7
<head>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     8
	<meta charset="utf-8">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
     9
	<title>jQuery Adapter &mdash; CKEditor Sample</title>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    10
	<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    11
	<script src="../ckeditor.js"></script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    12
	<script src="../adapters/jquery.js"></script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    13
	<link href="sample.css" rel="stylesheet">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    14
	<style>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    15
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    16
		#editable
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    17
		{
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    18
			padding: 10px;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    19
			float: left;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    20
		}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    21
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    22
	</style>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    23
	<script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    24
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    25
		CKEDITOR.disableAutoInline = true;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    26
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    27
		$( document ).ready( function() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    28
			$( '#editor1' ).ckeditor(); // Use CKEDITOR.replace() if element is <textarea>.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    29
			$( '#editable' ).ckeditor(); // Use CKEDITOR.inline().
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    30
		} );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    31
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    32
		function setValue() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    33
			$( '#editor1' ).val( $( 'input#val' ).val() );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    34
		}
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    35
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    36
	</script>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    37
</head>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    38
<body>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    39
	<h1 class="samples">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    40
		<a href="index.html" id="a-test">CKEditor Samples</a> &raquo; Create Editors with jQuery
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    41
	</h1>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    42
	<form action="sample_posteddata.php" method="post">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    43
		<div class="description">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    44
			<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    45
				This sample shows how to use the <a href="http://docs.ckeditor.com/#!/guide/dev_jquery">jQuery adapter</a>.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    46
				Note that you have to include both CKEditor and jQuery scripts before including the adapter.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    47
			</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    48
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    49
<pre class="samples">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    50
&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&gt;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    51
&lt;script src="/ckeditor/ckeditor.js"&gt;&lt;/script&gt;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    52
&lt;script src="/ckeditor/adapters/jquery.js"&gt;&lt;/script&gt;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    53
</pre>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    54
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    55
			<p>Then you can replace HTML elements with a CKEditor instance using the <code>ckeditor()</code> method.</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    56
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    57
<pre class="samples">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    58
$( document ).ready( function() {
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    59
	$( 'textarea#editor1' ).ckeditor();
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    60
} );
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    61
</pre>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    62
		</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    63
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    64
		<h2 class="samples">Inline Example</h2>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    65
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    66
		<div id="editable" contenteditable="true">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    67
			<p><img alt="Saturn V carrying Apollo 11" class="right" src="assets/sample.jpg"/><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    68
			<p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    69
			<p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    70
			<blockquote><p>One small step for [a] man, one giant leap for mankind.</p></blockquote> <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> <blockquote><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p></blockquote>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    71
		</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    72
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    73
		<br style="clear: both">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    74
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    75
		<h2 class="samples">Classic (iframe-based) Example</h2>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    76
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    77
		<textarea cols="80" id="editor1" name="editor1" rows="10">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    78
			&lt;h2&gt;Technical details &lt;a id=&quot;tech-details&quot; name=&quot;tech-details&quot;&gt;&lt;/a&gt;&lt;/h2&gt; &lt;table align=&quot;right&quot; border=&quot;1&quot; bordercolor=&quot;#ccc&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse:collapse;margin:10px 0 10px 15px;&quot;&gt; &lt;caption&gt;&lt;strong&gt;Mission crew&lt;/strong&gt;&lt;/caption&gt; &lt;thead&gt; &lt;tr&gt; &lt;th scope=&quot;col&quot;&gt;Position&lt;/th&gt; &lt;th scope=&quot;col&quot;&gt;Astronaut&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;Commander&lt;/td&gt; &lt;td&gt;Neil A. Armstrong&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Command Module Pilot&lt;/td&gt; &lt;td&gt;Michael Collins&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Lunar Module Pilot&lt;/td&gt; &lt;td&gt;Edwin &amp;quot;Buzz&amp;quot; E. Aldrin, Jr.&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;p&gt;Launched by a &lt;strong&gt;Saturn V&lt;/strong&gt; rocket from &lt;a href=&quot;http://en.wikipedia.org/wiki/Kennedy_Space_Center&quot; title=&quot;Kennedy Space Center&quot;&gt;Kennedy Space Center&lt;/a&gt; in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of &lt;a href=&quot;http://en.wikipedia.org/wiki/NASA&quot; title=&quot;NASA&quot;&gt;NASA&lt;/a&gt;&amp;#39;s Apollo program. The Apollo spacecraft had three parts:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;&lt;strong&gt;Command Module&lt;/strong&gt; with a cabin for the three astronauts which was the only part which landed back on Earth&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Service Module&lt;/strong&gt; which supported the Command Module with propulsion, electrical power, oxygen and water&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Lunar Module&lt;/strong&gt; for landing on the Moon.&lt;/li&gt; &lt;/ol&gt; &lt;p&gt;After being sent to the Moon by the Saturn V&amp;#39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the &lt;a href=&quot;http://en.wikipedia.org/wiki/Mare_Tranquillitatis&quot; title=&quot;Mare Tranquillitatis&quot;&gt;Sea of Tranquility&lt;/a&gt;. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the &lt;a href=&quot;http://en.wikipedia.org/wiki/Pacific_Ocean&quot; title=&quot;Pacific Ocean&quot;&gt;Pacific Ocean&lt;/a&gt; on July 24.&lt;/p&gt; &lt;hr/&gt; &lt;p style=&quot;text-align: right;&quot;&gt;&lt;small&gt;Source: &lt;a href=&quot;http://en.wikipedia.org/wiki/Apollo_11&quot;&gt;Wikipedia.org&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    79
		</textarea>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    80
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    81
		<p style="overflow: hidden">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    82
			<input style="float: left" type="submit" value="Submit">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    83
			<span style="float: right">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    84
				<input type="text" id="val" value="I'm using jQuery val()!" size="30">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    85
				<input onclick="setValue();" type="button" value="Set value">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    86
			</span>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    87
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    88
	</form>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    89
	<div id="footer">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    90
		<hr>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    91
		<p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    92
			CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    93
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    94
		<p id="copy">
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    95
			Copyright &copy; 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    96
			Knabben. All rights reserved.
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    97
		</p>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    98
	</div>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
    99
</body>
3329b413db18 add the new client libraries server side
rougeronj
parents:
diff changeset
   100
</html>