Hi,
I think I must be misunderstanding what you want as my first suggestion seems to be what you want.
e.g.
Code:
.indent-it{
margin:0 0 0 20px;
}
Code:
<fieldset>
<div class="single-field">
<input type="checkbox" name="checkbox7" value="checkbox" />
<label for="SystemAcc"><a href="#" class="check">Text</a><a href="#"></a></label>
<br />
<input type="checkbox" name="checkbox8" value="checkbox" />
<label for="HCA"><a href="#" class="check">Text 2</a> </label>
<br />
Select all that apply: <br />
<input class="indent-it" type="checkbox" name="checkbox9" value="checkbox" />
<label for="SystemAcc"><a href="#" class="check">Text 3</a><a href="#"></a></label>
<br />
<input class="indent-it" type="checkbox" name="checkbox10" value="checkbox" />
<label for="HCA"><a href="#" class="check">Text 4</a></label>
<br />
</div>
You can't wrap a parent around any of the inputs because the js looks for the parent and toggles the class.
Code:
$(this)
.parent()
.removeClass("curFocus")
.children("div")
.toggle();
You have to add a class to each input as per my first suggestion.
Unless I'm misunderstanding again which is quite likely
Bookmarks