how can i have the functionality of load() except i want to append data instead of replace. maybe i can use get() instead but i want to just extract the #posts element from the loaded data
.load() always replaces the contents of your element selected by your selector i.e. "#hi". You have to write the data from your load function to another element and APPEND that new element to #hi.