When I use the client side API to set the title and URL of my page to be shared, my page title gets URL encoded:
the tweet message comes out URL encoded: "test%20test%20test%20test%20test%20test"
is there a way around this? It happens on pinterest, facebook too
1.function OnSocialButtonClicking(sender, args) {2.var url = "http://www.telerik.com/"3.var title = "test test test test test test"4.args.set_stringsToShare(url, title)5.}the tweet message comes out URL encoded: "test%20test%20test%20test%20test%20test"
is there a way around this? It happens on pinterest, facebook too