Hi All,

I have a function with jcarousel but for some reason, I just can not
get the text to show below my images in the Container.

One guy helped me with various options but as you can see below, I am
still stuck.

Any help ?

I have now added the function as follows in the head and tried the
following two lines at three different places but still no luck. The
errors seems to have gone away now , but I do not see the Bla.


div = $("<div style='display:none'>blah</div>");
$(document.body).appendChild(div);


1) I have put the two lines in the function but no luck,
2) I have put the two lines in the fuction below the Return HTML Get
Element but no luck.
3) I have put it in its own javascript tags below the declaration of
the div as it is but no luck.


This is the function now in the head. You can see my code source
here.
http://www.somewhere2rent.com/test/


I have also made the image smaller just in case the text is behind
the
image.


<script type="text/javascript">


$(function()
{
whatever(); {


jcarousel.find("img")
.hover(
function(){
div.css({display:'block',position:'absolute',left:$(this).offset
().left, top:$(this).offset().top+$(this).height()});



},


function(){
div.css({display:'none'});


});
},
});


</script>

<body>


<div id="wrap" align="center">


<script type="text/javascript">


div = $("<div style='display:none'>blah</div>");
$(document.body).appendChild(div);


</script>


  <ul id="mycarousel" class="jcarousel-skin-ie7">
    <!-- The content will be dynamically loaded in here -->
  </ul>


</div>


</body>
</html>


ANy more help will be apreciated.


Thanks

Reply via email to