Сообщение от Alex_dark74
|
Есть у меня таблица и после строки с id="group_eq".
После этой строки хочу вставить из файла код используя .load().
|
Как вариант...
tmp.csp
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function (){
$('button').click(function (){
$('#test').after('<tr>');
$('#test').next().load('tmp1.csp');
});
});
</script>
</head>
<body>
<table>
<tr>
<td>0</td>
</tr>
<tr id='test'>
<td>1</td>
</tr>
<tr>
<td>2</td>
</tr>
</table>
<button>Load</button>
</body>
</html>
tmp1.csp
<td>New</td>