Not sure if right section ..........

isa-d

Mark VII Class
Joined
Aug 26, 2013
I think that kind of link will be allowed. The embedded players will be blocked. From ebay's guide:

What kind of active content will be blocked?
JavaScript, Flash, Plug-ins, and form actions will be blocked.

Will links to YouTube videos in listings and Stores be allowed?
Currently, links to YouTube and other externally hosted video sites are not allowed. We are working on a solution though the timing on this is yet to be determined.

Are links allowed in item description?
If links are used target="_blank" attribute should be added to the link. This allows sandboxed document to spawn new windows without forcing the sandboxing flags upon them.
Example: <a href="url" target="_blank">link text</a>
 
The reason Ebay is not going to allow embedded players any longer is because they slow down loading items on your cell phone, or so they say.
 
I think that kind of link will be allowed. The embedded players will be blocked. From ebay's guide:

What kind of active content will be blocked?
JavaScript, Flash, Plug-ins, and form actions will be blocked.

Will links to YouTube videos in listings and Stores be allowed?
Currently, links to YouTube and other externally hosted video sites are not allowed. We are working on a solution though the timing on this is yet to be determined.

Are links allowed in item description?
If links are used target="_blank" attribute should be added to the link. This allows sandboxed document to spawn new windows without forcing the sandboxing flags upon them.
Example: <a href="url" target="_blank">link text</a>

I did a few test and it seems that the direct link to BOX and DROPBOX are not blocked

Many thanks you for your suggestions
 
For those have my same problem (add a music clip to the record sales) because from June embed players are not allowed on the listing, this is the right HTML code to point to your music clip stored whatever

<a href="www.yourlinkhere.com" target="_blank">your link text</a>

where:
"www.yourlinkhere.com" it's the link of your music clip
"_blank" open the link in another page and it's mandatory to put it
>your link text< it's the actual text you show in the description of the auction

I modified this code with another two istances

<a href="www.yourlinkhere.com" target="_blank" style="color:red; text-decoration:none" >your link text</a>

where:
"color:red; text-decoration:none" replace default link color with red text and delete underline of the link

I hope it can help those like me who are not html code experts