Hello, I am looking for someone who can basically create this for me: http://www.mikes-marketing-tools.com/domain-name-search/ It's a search-bar that lets you type a domain name (I just want it to show availability of .com domains) and tells you if it's available or not. It does this by pinging the IP and seeing if it resolves. So it does NOT actually check with any registrars for instance (would take too long!). There is even a description of how this works from the website I listed. Please let me know if this is a code snippet you would KNOW how to put together and also if you could do this for me. Please tell me how much it would cost. I pay via PayPal. Thanks.
Hi. It surely would work if you use iframe + simple javascript. <html><body> <input type="text" value=""> <button onclick="document.getElementsByTagName('iframe')[0].src = 'http://www.instantdomainnamesearch.org/test.php?url=' + document.getElementsByTagName('input')[0].value;">test</button> <iframe src="about:blank"></iframe> </body></html> Code (markup): I haven't tried that with no-frame + AJAX, but that'd then be cross-domain scripting. Have you contacted the author (Michael Wong?) for your own use? Hendra
Thanks for the reply. Yes, I did email, but didn't get a response. So trying to see if someone can replicate for me as a quit custom project.