Showing posts with label AJAX. Show all posts
Showing posts with label AJAX. Show all posts

Sunday, January 25, 2009

Bookmarklet - View Rendered HTML Source Code

Developing DHTML applications can be challenging, often the rendered HTML source code is dynamically assembled via JavaScript or AJAX and is dramatically different than the original source code of the Web page.

To view the raw rendered source code of an HTML page, save the following link as a bookmark, then navigate to the HTML page and click the bookmark.

javascript:document.write('<pre>' + document.body.innerHTML.replace(/</g,'&lt;').replace(/>/g,'&gt;') + '</pre>');

Sunday, March 23, 2008

Windows Live Search SDK

Microsoft has announced a software development kit (SDK) for Windows Live Search:

You can easily add Search to your site with our Live Search box. For more options, use our Live Search Web Service, where you’ll be able to query for web results, images, news, phonebook listings, feeds, and meta tags.

According to Microsoft the software development kit provides:

  1. SOAP API - With the SOAP API you can create a custom search engine, enhance your existing site search with spelling suggestions, images, news articles, feeds and phonebook results.
  2. AJAX Control - Easily add search to your web site with this AJAX control. Deploy the script as is from the wizard, or customize it for more functionality.