Noob question: How to SELECT an item from AJAX response HTML?
hello, i want to select an item from ajax response html.
For example.
- $("#result").load('test.html");
Then if the test.html return
- <div id="abc">test data</div>
Is there a way i can use
- $("#abc").hide();
i try it but it won't work. I think jquery can't see the <div id=abc> element
Please help.
thanks