JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/ui-lightness/jquery-ui.css">
<div id="radios">
<form>
<input type='radio' name='test' value='1' />
<input type='radio' name='test' value='2' checked='checked'/>
<input type='radio' name='test' value='1' />
<input type='radio' name='test' value='1' />
<input type='text' />
<select>
<option>1</option>
<option>2</option>
</select>
<input type="checkbox" />
<input type="checkbox" checked="checked" />
</form>
</div>
Select a different element above then <button id="wrap">wrap</button>
JavaScript
$('#wrap').click(function() {
$("#radios").wrap("<div>");
});