Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
html
html
titlehelloJquery.html
<html>
  <head>
    <title>Driving Sling with jQuery</title>
    <script type="text/javascript" src="jquery-1.2.6.js"></script>
  </head>
<body>

<h3>Driving Sling with jQuery</h3>
<p>Start firebug, click on Console, then go multiline (click the little red arrow on the bottom bottom right)</p>
<p>enter the code below, click on 'run'</p>

<pre>
$.post(
  "/content/*",
  { ':nameHint': 'myNamemyNode', oneProperty: 'oneValue' },
  function(data){ alert(data); }
);
</pre>

<p>Then <a href="http://localhost:7402/content/mynamemyNode.html">view your new node</a></p>

</body>
<html>

...

Code Block
html
html
<form action="/content/*" method="POST">
  <input type="hidden" name=":nameHint"   value="myNamemyNode">
  <input type="text"   name="oneProperty" value="oneValue">
</form>

...