You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

first attempt not working in Firefox Created Feb 17, 2010

This thread is solved

Views: 771     Replies: 1     Last reply Feb 17, 2010  
You must login first before you can use this feature

solitario

Posts: 4

Registered:
Feb 17, 2010

first attempt not working in Firefox

Posted: Feb 17, 2010

Hello all.
Can anyone help me make this work in Firefox. It's showing me a blank screen... many thanks.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>test</title>
<script src="_js/jquery-1.3.2.min.js"></script>
<script src="_js/tools.tooltip-1.1.3.js"></script>
<script>
$(document).ready(
function() {
$("#demo img[title]").tooltip('#demotip');
}
);
</script>
<style>
#demotip {
display:none;
background:transparent url(_images/black_arrow.png);
font-size:12px;
height:70px;
width:160px;
padding:25px;
color:#fff;
}
#demo{
margin-left: 100px;
}
</style>
</head>
<body>

<!-- the tooltip -->
<div id="demotip"> </div>
<!-- and the triggers -->
<div id="demo">
<img src="image1.jpg" title="The tooltip text #1"/>
<img src="image2.jpg" title="The tooltip text #2"/>
<img src="image3.jpg" title="The tooltip text #3"/>
<img src="image4.jpg" title="The tooltip text #4"/>
</div>

</body>
</html>

solitario

Posts: 4

Registered:
Feb 17, 2010

» first attempt not working in Firefox

Posted: Feb 17, 2010

Reply to: first attempt not working in Firefox, from solitario
Got it.
Because I had no image1.jpg, image2.jpg, etc., Firefox was not displaying the "broken image" icon which IE was displaying.
Thanks anyway.