Skip to main content

Bug Tracker

Side navigation

#7656 closed bug (invalid)

Opened November 29, 2010 10:07PM UTC

Closed November 29, 2010 10:13PM UTC

Bug breaks part of theme - Image missing

Reported by: anonymous Owned by:
Priority: undecided Milestone: 1.6
Component: unfiled Version: 1.4.4
Keywords: Cc:
Blocked by: Blocking:
Description

When I add this the image in front of the home category disappears and normal text replaces the icon:

<script type="text/javascript" src="http://www.123abc.com/jquery.js"></script>

<script type="text/javascript">

$(document).ready(function() {

$("span.spoiler").hide();

$('<a class="reveal">Reveal Spoiler >></a> ').insertBefore('.spoiler');

$("a.reveal").click(function(){

$(this).parents("p").children("span.spoiler").fadeIn(2500);

$(this).parents("p").children("a.reveal").fadeOut(600);

});

});

</script>

<script>

$(document).ready(function(){

$("#the_lights").fadeTo(1,0);

$("#turnoff").click(function () {

$("#the_lights").css({'display' : 'block'});

$("#the_lights").fadeTo("slow",1);

});

$("#soft").click(function () {

document.getElementById("the_lights").style.display="block";

$("#the_lights").fadeTo("slow",0.8);

});

$("#turnon").click(function () {

document.getElementById("the_lights").style.display="block";

$("#the_lights").fadeTo("slow",0);

});

});

</script>

P.S. I'm using the compressed version of jquery and haven't tried the uncompressed version yet under this theme in wordpress.

Attachments (0)
Change History (1)

Changed November 29, 2010 10:13PM UTC by jitter comment:1

resolution: → invalid
status: newclosed

The jQuery bug tracker is not for support requests. Please use the jQuery Forum for support requests.

If you think your problem originates from a bug in jQuery core then please submit a reduced test case, which reproduces the issue you are experiencing, on http://jsfiddle.net. So that we can investigate this issue further.


How to report bugs