views:

29

answers:

1

Hi ,

In my site , I added lot of AJAX function , For (dynamic pages ) ,

I read the below thread, i understand GOOGLE AJAX Crawler Procedure,

Just am confirming ,

In applications am not used the links,

i am using DIV, in that DIV onclick i called the ajax function ,

in that ajax code there is a URL , in this URL i appended the #!key=value ,

Please confirm IT , its correct ?

Thanks

NOTE: I dont have TAG ,

My sample Snippet,

url='mycaller.php?reid=12#!reid=12'
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.open("GET",url,true);
xmlHttp.send(null);

my reference url

+1  A: 

i confirm, that this is not the way it works.

google crawls

  • mycaller.php?reid=12#!reid=12

as

  • mycaller.php?reid=12&_escaped_fragment_=reid=12

you need to return an HTML response to the second URL. it's like cloaking (from a technology standpoint), but ok with google.

Franz