Ответ 1
Я думаю, что страница Tutorials на домашней странице jQuery будет хорошим местом для начала:)
Простой пример удаления ссылки, на которую вы нажали, следует:
<html>
<head>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
// execute script only when DOM has finished loading
$(document).ready(function() {
$('#removeme').click(function() {
// remove element that has been target of the event
$(this).remove();
// stop browser from following the link
return false;
});
});
</script>
</head>
<body>
<p>
<a id="removeme" href="#" onclick="location.href='http://example.org'; return false;">Remove me</a>
</p>
</body>
</html>