jQuery .wrap() and Moving Divs

Hello,

I created 3 funnels on my homepage with 3 IDs.

I used the following jquery to wrap them in anchor tags:

jQuery(document).ready(function($) {
           $('#web-service-funnel-1,#web-service-funnel-2,#web-service-funnel-3').hover(function(){
           $(this).wrap("anchor tag here");
     });
});

Here’s the website, home page: ommitted

When I hover, all 3 div live the padding between them and behave like marginless columns. I’ve checked the console and there are no JS errors.

Any idea why that is happening?

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.