Edit: I have updated the JSBin link to include the code I am using to inject CSS into the head of the iFrame
I am using the standard Twitter widget on a website(I do not have the ability to use an API approach) and the client would like some customization of the widget. I've been able to figure out how to change colors, borders, font, stuff like that, but they would also like to have these arrow images which will show up before and after each tweet like this:
I tried the following code, just to see if I could prepend an element to that div but no success.
$("#twitter-widget-0").contents().find('.e-entry-content').prepend('<span>TEST</span>');
Here is a JSBin for experimentation. Is this even possible?
Thanks!