Skip to content Skip to sidebar Skip to footer

Hovering The Text For Full Form

when i mouse hover the text below the cube..... i need to display a small window with a text in it.... i got the text from js but not sure how to integrate with hover function....

Solution 1:

First please don't provide Fiddles like that..ever, separate the different languages into their relevant boxes and use the resources tabs to link to files. It maks things a lot clearer for us to help.

Second don't include code that's not relevant, for example the the google analytic script, yes it will take more time for you to format the fiddle to use as an example but you'll get a quicker response.

If you simply need to hover over CSM and have "Customer Relationship Management" appear underneath it then you can do something like the below.

$('.cubeTextStyle').hover(
   function(){
      $(this).append('<span>Customer Relationship Management</span>');
   },
   function(){
      $('.cubeTextStyle span').remove();
   }
);

I haven't used your fiddle because I won't sift through all of your code, but please see this new basic fiddle.


Post a Comment for "Hovering The Text For Full Form"