I've insert onclick to all with below call function : onclick="javascript:loadcontent($(this).attr('rel'));

this code working corectly in Firefox and IE but not in Chrome

How can I fix it ?

link|improve this question
press F12 to access the chrome web inspector and let us know if there is an error – captainclam Sep 19 '11 at 9:06
create an example in jsfiddle.net – NullOrEmpty Sep 19 '11 at 10:57
I know F12 to access chrome web inspector but this function is not runing – Alex.k Sep 19 '11 at 11:57
feedback

2 Answers

<a href="" id="someSpecificLink">Try this instead</a>

$('#someSpecificLink').live('click', function(e) {
  e.preventDefault();
  loadcontent($(this).attr('rel'));
});
link|improve this answer
but I don't like use this code for all ".somelike" or all <a> I need to use onclick – Alex.k Sep 19 '11 at 9:19
feedback
  • Remove the javascript:. It's unnecessary.
  • Skip jQuery's attr() method. There's no benefit to it here.

onclick="loadcontent(this.rel)";

That said, these are both optimizations. There's no obvious reason why that code wouldn't work in most browsers. Check the browser's console for errors.

link|improve this answer
I tested but not worked – Alex.k Sep 19 '11 at 9:21
@Alex.k: Not surprising: as I mentioned, my suggestions were improvements but not fixes. It's impossible to diagnose the problem without more context. – Tim Down Sep 19 '11 at 9:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.