Re: Problem with “Send To” field showing html code
I fixed it.
It was an Error with the settings.urlLookup function.
For Example:
jQuery(settings.inputClass,tmp).autocomplete(settings.urlLookup,settings.acOptions);
was giving me:
settings.urlLookup=”http://www.******.de/cms/cms/wp-load.php”;
But that was not The URL to the wp-load.php,
so i fixed the Code:
settings.urlLookup="http://www.******.de/cms/wp-load.php";
jQuery(settings.inputClass,tmp).autocomplete(settings.urlLookup,settings.acOptions);
Now it is working Great, for Explaining or Helping with the Fix contact me.
Best Regards,
Steffen Rogge