Use a CSS selector to replace every valid link with an embed on the page. $('a').embedly( options ); # Replace all valid links $('a').embedly(); # Replace a subset of links $('a.oembed').embedly(); # Replace with maxWidth option set to 600px and method option set # to 'after' $('a').embedly({query: {maxwidth: 600}, 'method':'after'}); # Replace only Hulu links $('a').embedly({ query: {maxwidth: 60

