I have made a web app and we are using imageflow
And in the description for the image we have a link to another part of our website. The problem is that the href has to be html encoded or else it breaks the decription and places the url in the wrong place. Because of this it does not work on mobile or the ipad/phone.
Is there a alternitive i can use to encode instead of using $quot; for example or some type of fix i can use to get this to play nice with mobile?
<img src="image/img1.jpg" longdesc="setup.php" alt="<strong>Name1</strong><br />Birthday1<br /><a href="profile.php">View Profile</a> / <a href="photos.php">Photos</a><br /><span class="greenText"><strong>Question</strong> <a href="ask.php">Ask them!</a> " />
Each image is like this. The Imageflow app asks that the urls to be encoded in the alt description.
You've got a few options to escape a quote:
 
"
"
%22
(shortest one)If possible, I recommend to change the URL to a more appropriate URL instead.