<?xml version="1.0" encoding="ISO-8859-1"?>
<taconite>
<remove select=".deleteDiv" arg1="" />
<prepend select="#prependDiv"><span class="newContent">This span was prepended to the PREPEND div</span>
</prepend>
<after select="#afterDiv">
											<div class="newContent">Note that we can have multiple elements here.<div>Any XHTML can be used!</div>
												<p> Radios follow:
													<input type="radio" name="1" value="1"/>
													<input type="radio" name="1" value="2"/>
													<input type="radio" name="1" value="3"/>
												</p>
											</div>						 
										 
</after>
<before select="#beforeDiv"><span class="newContent">This span was inserted before the BEFORE div</span>
</before>
<replace select="#replaceDiv">
							<div class="newContent">This is <span style="font-weight:bold">new</span> content that includes a table.</div>
							<table border="1" cellpadding="3" class="newContent">
								<thead><tr><th>Header 1</th><th>Header 2</th></tr></thead>
								<tbody>
									<tr><td>row 1 col 1</td><td>row 1 col 2</td></tr>
									<tr><td>row 2 col 1</td><td>row 2 col 2</td></tr>
								</tbody>
							</table>						 
						 
</replace>
<replaceContent select="#replaceContentsDiv">
							<div class="newContent">This is <span style="font-weight:bold">new</span> content that replaced the old content.</div>
							<p class="newContent"> Checkboxes follow:
								<input type="checkbox" name="1" value="1"/>
								<input type="checkbox" name="2" value="2"/>
								<input type="checkbox" name="3" value="3"/>
							</p>						 
						 
</replaceContent>
<attr select="#setAttrDiv" arg1="class" arg2="green" />
<after select="#tr"><tr class="newContent"><td>The</td><td>new</td><td>row</td></tr>
</after>
<wrap select=".wrapMe"><div style="border:3px solid red; padding: 2px"><div style="border:3px solid blue; padding: 2px"/></div>
</wrap>
<append select="head">
						<script type="text/javascript">
							$("#wireMe").click(function() {
								alert("Button clicked!");
							}).val("Wired!");
						</script>
</append>
<eval><![CDATA[$("#evalTarget").html("This text came from an eval command");]]></eval>
<hide select="#hideMe" arg1="" />
</taconite>