[Urgent]Need a Coder to write a simple script

Status
Not open for further replies.

rchieox

Registered Member
Joined
Oct 30, 2012
Messages
59
Reaction score
5
As the Title says,
I Need a URL Extractor script/tools which will allow me to extract domains/URL from a page with push of a button.
Budget : $12
For More details PM me.

Thank You
Archieox
 
Code:
$(document).ready(function(){
  var sText = ''
  $('body a').each(function(){
    sTexh += $(this).attr('href')+"\n";
  });
  alert(sText);
});

This will give you all the links on a page :-)
 
Where should i use this code ?

Code:
$(document).ready(function(){
  var sText = ''
  $('body a').each(function(){
    sTexh += $(this).attr('href')+"\n";
  });
  alert(sText);
});

This will give you all the links on a page :-)
 
Code:
$(document).ready(function(){
  var sText = ''
  $('body a').each(function(){
    sTexh += $(this).attr('href')+"\n";
  });
  alert(sText);
});

This will give you all the links on a page :-)

i think this includes all links
and he don;t want all links ,just other Domain urls :D
 
Status
Not open for further replies.
This thread has been auto closed due to the forum's thread age policy. Read more.
Back
Top