$ = jQuery; $(window).load(function(){ makeDrops(); $('.field-add-more-submit').focus(function(){ alert('more'); }); }); function makeDrops(){ nodelist = ''; $.get("/node_reference/autocomplete/node/field_refs/", function(data){ nodelist = data; $("#field-refs-values input.form-autocomplete").each(function(){ fval = $(this).attr('value'); fid = $(this).attr('id'); fclass = $(this).attr('class'); fname = $(this).attr('name'); dropdown = ''; $(this).replaceWith(dropdown); }); }); }