$ = jQuery; $(window).load(function(){ $(document).ajaxStop(function() { makeDrops(); }); makeDrops(); }); function makeDrops(){ nodelist = ''; $.get("/node_reference/autocomplete/node/field_refs/", function(data){ nodelist = data; $(".field-widget-node-reference-autocomplete 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); }); }); }