Quantcast
Channel: Niluka Blog » Jquery
Viewing all articles
Browse latest Browse all 17

Accessing elements of ajax html response with jquery

$
0
0

Access elements of a html response of an ajax request.


$.ajaxSetup(
 {
   success: function(html)
   {
    alert($('#span', html).html()); 
   }
 }



Viewing all articles
Browse latest Browse all 17

Trending Articles