jqueryは初めてで、インジェクションを機能させようとしています。助けていただければ幸いです。
親ページにiframeを埋め込んでいます。iframe内(jqueryをインスタンス化する場所)から、その親ページのclass="btn"のすべてのDOM要素に'onmouseover'イベントハンドラーを挿入したいと思います。これらの要素はすべて、id="contentWrapper"のトップレベルコンテナdiv内のdivレベルにあります
次のようなものになると思いますが、正しい方向を示すためのヒントは大歓迎です。
// am assuming I can see <div id='contentWrapper'> element in parent frame from within the iframe
// not sure where to place the 'btn' class reference.
$('contentWrapper').on('onmouseover', function(event){
// some activity here
});