I am using fancybox(lightbox like js popup library) to show photo and it's title in popup. Photos are uploaded by user with supplied title. I also escaped the photo title when displaying the photo in html. the html tags are simple as:
<a href="/files/909221123.large.JPG" title="sample image <script>alert('test')</script>"><img src="/files/909221123.medium.JPG"></a>
As you can you see, the js tag in title is escaped. However, it runs regardlessly when displayed in fancybox popup - I click the photo which prompts a js alert popup then a fancybox popup with the photo.
That is a XSS problem for sure but I thought it is so obvious and fancybox shouldn't have this sorta problem at the first place. Did I do something wrong here? and How to fix it?
thanks.