Hi all.
I have jQuery function, that if it will hit specific class is wrapping it with some oter divs.
(document).ready(function(){
var Text = $('.bd_box_cont').html();
$('.bd_box_cont').html("
<div class='bd_box_tl'><div class='bd_box_rt'>" + Text +"</div></div>
");
)}
Only problem is that I have more then one container on my site, and it is putting this same html to every one of them.
How can I return var Text for specific container?
Thank you for your help in advance