jQuery( document ).ready( function( $ ) { $( '.rwmb-input' ).on( 'click', 'a.show-embed', function() { var $this = $( this ), $input = $this.siblings( ':input.rwmb-oembed' ); $embed_container = $this.siblings( '.embed-code' ), data = { action : 'rwmb_get_embed', oembed_url: $input.val(), post_id : $( '#post_ID' ).val() }; $embed_container.html( "" ); $.post( ajaxurl, data, function( r ) { var res = wpAjax.parseAjaxResponse( r, 'ajax-response' ); if ( res.errors ) alert( res.responses[0].errors[0].message ); else $embed_container.html( res.responses[0].data ); }, 'xml' ); return false; }); } );