Side navigation
Ticket #6715: aa.html
File aa.html, 0.6 KB (added by sky266, June 24, 2010 06:05AM UTC)
the demo of this section
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
</head>
<body>
<div>
<input type="radio" name="newsletter" value="Hot Fuzz" class="a" />
<span>name?</span>
</div>
<div>
<input type="radio" name="newsletters" value="Cold Fusion" disabled="disabled" class="a" />
<span>name?</span>
</div>
<div>
<input type="radio" name="accept" value="Evil Plans" class="a" />
<span>name?</span>
</div>
<script> $(".a[disabled='disabled']").next().text(" is newsletter");</script>
</body>
</html>
Download in other formats:
Original Format
File aa.html, 0.6 KB (added by sky266, June 24, 2010 06:05AM UTC)
the demo of this section
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
</head>
<body>
<div>
<input type="radio" name="newsletter" value="Hot Fuzz" class="a" />
<span>name?</span>
</div>
<div>
<input type="radio" name="newsletters" value="Cold Fusion" disabled="disabled" class="a" />
<span>name?</span>
</div>
<div>
<input type="radio" name="accept" value="Evil Plans" class="a" />
<span>name?</span>
</div>
<script> $(".a[disabled='disabled']").next().text(" is newsletter");</script>
</body>
</html>