Jump to content

Using Jquery on Marcom


mjlongo

Recommended Posts

Can someone provide me with some tips/tricks that I need to know in order to implement some Jquery on my portals? I read in another thread that Marcom is using noConflict. What exactly does that mean?

 

Right now I'm just demoing a simple fadeIn, fadeOut of text when hovering over an image but nothing at all is happening.

 

the typical script would look something like this:

 


$(document).ready(function(){
  $('.imgRow').hover(function(){
     $(this).find('.img-title').fadeIn(300);
  }, function(){
     $(this).find('.img-title').fadeOut(100);
  });
});

Link to comment
Share on other sites

×
×
  • Create New...