PDA

View Full Version : please wait???


tina
January 7th, 2007, 02:21 PM
hello, i have added widget to my site and it loads the address book fine then it stops on the please wait button? what am i doing wrong?

kas
January 8th, 2007, 05:15 PM
Hi Tina,

Usually "please wait" comes from one of two things:

http://www.plaxo.com/api/widget

1) having the page from step 1 in the widget instructions not on the same page you are launching the widget from

or

2) not using the absolute path for your callback page in step 4
e.g. /mypages/plaxo_cb.html

Mostly, it's the second that trips people up.

If that doesn't fix it, either post your URL here for more assistance or send me a private message.

Best,

Kathy

tina
January 12th, 2007, 07:46 PM
when copying the script. where is the script entered for the second part..after the 1st head or the 2nd head.. this is where im getting confused the copying and pasteing.

kas
January 15th, 2007, 06:22 PM
The script tags should be inside the two head tags (that is, “inside the head” meaning “after the starting <head> tag and before the ending </head> tag”):

<html>

<head>

<script type="text/javascript" src="http://www.plaxo.com/css/m/js/util.js"></script>
<script type="text/javascript" src="http://www.plaxo.com/css/m/js/basic.js"></script>
<script type="text/javascript" src="http://www.plaxo.com/css/m/js/abc_launcher.js"></script>
<script type="text/javascript"><!--
function onABCommComplete() {
// OPTIONAL: do something here after the new data has been populated in your text area
}
//--></script>

</head>

<body>
Body here
</body>

</html>