I have a modal with content that if there is no result, it shows the option to search further. I have the button working, but it makes an AJAX call and that works well. What I am struggling with is what to do to show the new content. I have the JQUERY remove function working, but when I try to use SHOW to display the new content, I am not getting anything. Am I along thinking along the right line?
success: function(data){
jQuery('#test').remove();
jQuery('#test2').show();
}