Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey guys, the following snippet of jQuery code seems to work fine in Google Chrome and Opera, but nothing happens when I try hiding/showing the related div in Internet Explorer or Firefox. Any ideas?

$(function() {
  $(".paste-meta-small .right a.collapse").click(function(event) {
    $(this).parents(".paste-meta-small").next(".highlight").toggle(500);
    $(this).text($(this).text() == 'show' ? 'hide' : 'show');
    event.preventDefault();
  })
})

$(function() {
  $(".highlight-meta a.blog-collapse").click(function(event) {
    $(this).parents(".highlight-meta").next(".blog-highlight").toggle(500);
    $(this).text($(this).text() == 'show' ? 'hide' : 'show');
    var margin = ($(this).text() == "show" ? "15px" : "0");
    $(this).parents(".highlight-meta").css("margin-bottom", margin);   
    event.preventDefault();
  })
})

A working example can be found here

Thanks in advance

share|improve this question
1  
What does your HTML look like? (I don't understand what I'm supposed to be looking at in the page you linked.) – Pointy Mar 8 '10 at 18:19
did you try to use console.log()? this way you can see where it gets stuck. – adardesign Mar 8 '10 at 18:19
@Pointy - That is the page, took me a minute as well. – Nick Craver Mar 8 '10 at 18:20
Yeah sorry guys I should have pointed that out and been a little clearer. – user288964 Mar 8 '10 at 18:28

1 Answer

up vote 1 down vote accepted

Your problem is in the script tags up top:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" />
<script src="/js/injekt.js" type="text/javascript"></script>

The second tag isn't loading in the other browsers, <script> tags always need a closing tag, they can't be self-closing:

<script></script> //Valid
<script /> //Invalid

Change the first tag to this to make it work:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
share|improve this answer
Ahh, thank you! How silly of me. First question on here an answered in practically moments. Awesome! Thanks again – user288964 Mar 8 '10 at 18:27
@injekt - Welcome! and Welcome to SO! – Nick Craver Mar 8 '10 at 18:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.