i'm trying grab text element google search.
the source code
<span><b>likely domain</b> : example.com</span> i tried
var search = $('span b').text( ); and grabs likely domain part need example.com section.
omit b selector:
var search = $('span').text( );
Comments
Post a Comment