September 17, 201015 yr Hello. I'm just starting, and I was wondering if anyone can help me on showing me how to combine these two separated scripts together function searchLocations() { $.post("testing.php",{search_term: form.search_term_box.value},function(data) { $("#search_results").html(data); }); return false; } $(document).ready(function() { $('s#more').hide(); $('div#moreAnchor').click(function() { $('div#moreAnchor').show(); }); }); Thank you
Create an account or sign in to comment