var featured_products_val = $('#input_title5').val(); var thisprodi; var thisprodic; $('#input_title5').hide().after(''); $('#featured_products_holder').load('https://joycechenfoods.com/common/recipes/featured_products_selector.php', { 'prefix' : 'joycechen'}, function(){ $('#featured_products_holder li').each( function(){ thisprodi = $(this).attr('data-id'); if(featured_products_val.indexOf('['+thisprodi+']') > -1){ $(this).addClass('selected'); } }); $('#featured_products_holder li').click( function(){ thisprodic = $(this).attr('data-id'); if(featured_products_val.indexOf('['+thisprodic+']') > -1){ featured_products_val = featured_products_val.replace('['+thisprodic+']',''); $(this).removeClass('selected'); } else { featured_products_val += '['+thisprodic+']'; $(this).addClass('selected'); } $('#input_title5').val(featured_products_val); }); });