<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- saved from url=(0029)http://www.tonic4business.ie/ -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
</script>
<title>Test</title>
<link href="jquery-ui.css" rel="stylesheet" type="text/css" />
<script src="jquery.min.js"></script>
<script src="jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
$("#accordion").accordion({active:false});
$("#ahead").click(function(){
tinyMCE.init({
mode : "textareas",
theme : "simple"
});
});
});
</script>
</head>
<body>
<form name="changejdcomp" method="post" action="updates.php">
<table width="100%">
<tr>
<td>
<div id="accordion">
<table width="100%" border="0">
<tr>
<td id="ahead">
Click here to show the detail
</td>
</tr>
</table>
<div style="position: relative; z-index: 10">
<table width="100%" border="0">
<tr>
<td>
Field 1:
</td>
<td>
Field 2:
</td>
</tr>
<tr>
<td>
<textarea name="Field1"></textarea>
</td>
<td>
<textarea name="Field2"></textarea>
</td>
</tr>
</table>
</div>
</div>
</td>
</tr>
</table>
</form>
</body>
</html>
|