I write application in PHP with some AJAX. I have problem only with IE (tested on 8.0.6001.18702). FF, Chrome Opera work great.
I get Error: Object expected error on line edytuj_news(
HTML:
<div id="news">
<a href="#1">edit</a>
<a href="#2">edit</a>
</div>
JS:
$(document).ready(function(){
$('#news a')
.live('click',function(event){
event.preventDefault();
edytuj_news(
$(this).attr('hash').slice(1)
);
});
});
function edytuj_news(idNews){
$.ajax({
type: "GET",
url: '/ajax/get_news',
data: {"idNews": idNews},
cache: false,
timeout: 3000,
success: function(json){
var data = $.parseJSON(json);
// ... work
}
});
}
All my click function act like that.
OK. I find bug. I don't give You chance. I programing in Netbeans i I use @todo marks. Of course commented. But IE don't see //.
<a>tag, but there is an "href" value. – Pointy Mar 14 '11 at 14:10.attr('hash')is very valid and works :) – Martin Jespersen Mar 14 '11 at 14:31