![Пишу](images/smilies/write.gif)
рыбки уснули в пруду ... выкидываем всё лишнее из href, строки 28 и 30 два варианта отмены выполнения события ...
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(function () {
var shifrovanuy_cod = 123 ;
function __doPostBack(a) {
alert(a);
}
$("#cat li").click(function () {
if ($(this).children(".list-item").children("span").hasClass("arr-show")) {
$(this).children(".list-item").children("span").removeClass("arr-show");
} else {
$(".list-item span").removeClass("arr-show");
$(this).children(".list-item").children("span").addClass("arr-show");
}
$(this).next(".tab-block").slideToggle("slow").siblings(".tab-block:visible").slideUp("slow");
});
$("#ctl00_cphUserContentInner_btnSavePass").click(function (event) {
event.preventDefault()
__doPostBack(shifrovanuy_cod)
//return false
})
});
</script>
</head>
<body>
<ul id="cat">
<li><a class="list-item">заголовок<span class="arr-hide"> </span></a></li>
<div class="tab-block" style="display:none;"><a id="ctl00_cphUserContentInner_btnSavePass" href="" ><div class='btn btn-primary' style='margin-bottom: 10px;'>Сохранить</div></a>какой-то текст </div>
</ul>
</body>
</html>