I have a script where I change the src of the iframe by java script (it has to be by this methodo), but I do not know how to send data by post only by get as it is only by the data in the url someone knows how to do this
<div id="overlayedt" >
<iframe id="frameEditor" src="" style="position:absolute;width:100%;height:100%;background:white"></iframe>
</div>
Java script
function editfile(a,b,c){
$("#frameEditor").attr('src','<?php echo $s; ?>/manager/editor/?a='+a+'&b='+b+'&c='+c+'',{aa:'oii'});
$("#overlayedt").show();
}
I've already tried posting the data via post with {key:value}
equal to $.post()
but nothing