function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Laurence Drier de Laforte 4Laurence Drier de Laforte 4 

Create a baidu search link

Hi, I would like to create a Baidu Search link on accounts based on the same model than the Google Search link: http://www.google.com/search?q={!Account.Name}. Unfortunately, it doesn't seem to be as simple as just putting "baidu" instead of "google" in the quiery.
Can someone help with that? 
Nissam PSNissam PS
Hi Laurence,

Here you go, I just tested and it is working.

User-added image

Here is the Java Script.
 
var searchText = "http://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=0&rsv_idx=1&tn=baidu&wd="+"{!Account.Name}"+" "; 
window.open(searchText);

Let me know if this helps you!

Thanks!