Posts o[html] Google Custom Search
Post
Cancel

o[html] Google Custom Search

Got a blogroll or a directory you want to make searchable? Here’s a quick and easy way to create a search engine from the links on your web page.

http://cse.google.com/cse/tools/create_onthefly


Create Crawlable, Link-Friendly AJAX Websites Using pushState()

https://moz.com/blog/create-crawlable-link-friendly-ajax-websites-using-pushstate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// We're using jQuery functions to make our lives loads easier
$('nav a').click(function(e) {
      url = $(this).attr("href");

      //This function would get content from the server and insert it into the id="content" element
      $.getJSON("content.php", {contentid : url},function (data) {
            $("#content").html(data);
      });

      //This is where we update the address bar with the 'url' parameter
      window.history.pushState('object', 'New Title', url);

      //This stops the browser from actually following the link
      e.preventDefault();
}

SEO-Friendly URL Structure

http://webdesign.tutsplus.com/articles/how-to-create-an-seo-friendly-url-structure–webdesign-9569 http://techterms.com/definition/friendly_url http://stackoverflow.com/a/8485137/1320686

#seo

origin - http://www.pipiscrew.com/?p=3268 html-google-custom-search

This post is licensed under CC BY 4.0 by the author.
Contents

Trending Tags