I need to wrap 3 divs into one using jQuery.
$('.one, .two, .three').wrapAll('<div class="wrap">');
or
$('.one, .two, .three').wrapAll( $('<div>').addClass('wrap') );
Reference: http://docs.jquery.com/Manipulation/wrapAll