Thread: jQuery help?
View Single Post
Old 11-26-2009, 01:32 AM   PM User | #1
ffsja
New Coder

 
Join Date: Jul 2005
Posts: 41
Thanks: 0
Thanked 0 Times in 0 Posts
ffsja is an unknown quantity at this point
Question jQuery help?

So I'm using jQuery to add new <SELECT> boxes to my form that get data from a mysql database. It all works great, EXCEPT I cannot get my 'remove' link that I am putting next to my <SELECT> boxes to actually remove the <SELECT> box it's next to. Here's my code:

<script type="text/javascript">
var count = 0;
$(function() {
$('p#add_field').click(function() {
count += 1;
$('#container').append('<select id="field_' + count + '" name="fields[]' + '"> <?php echo javascript_escape($course_block); ?> </select><a href="#" onclick="removeFormField(field_' + count + '); return false;">Remove</a>');
});
});

function removeFormField(id) {
$(id).remove();
}
</script>
__________________
Website:
http://www.taigawebmasters.com/
ffsja is offline   Reply With Quote