Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $('body').once(function(){
  2. var $fluidBlockContainer = $('.view-fluid-blocks').not('.current-block');
  3. $fluidBlockContainer.click(function(e) {
  4. destinationURL = $(this).find('.views-field-title span.field-content a').attr('href');
  5. if (destinationURL !== undefined) {
  6. window.location = destinationURL;
  7. }
  8. // return false;
  9. });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement