$('#make','#redlineSelect').click( do something here)

It's invalid to have a string as the second parameter to jQuery. Try
this instead:
$("#redlineSelect #make").click(...);

~Sean

Reply via email to