Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- jQuery(window).load(function(){
- $slider = jQuery('#fwslider');
- if( $slider.length == 0 )
- return;
- $slider.find('.slide').each(function(){
- var url = $(this).find('.readmore > a').attr('href');
- if( url ){
- $(this).css({ 'cursor' : 'pointer' }).click(function(){
- window.location.href = url;
- });
- }
- });
- });
Add Comment
Please, Sign In to add comment