mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-22 09:22:22 +00:00
This commit is contained in:
@@ -167,6 +167,18 @@ function getDataFromClipboard()
|
||||
return pastetext;
|
||||
}
|
||||
|
||||
// ****
|
||||
// * Oeffnet ein neues Fenster welches dann die Datei 'action' mit dem POST Parameter 'data' aufruft
|
||||
// ****
|
||||
function OpenWindowPost(action, data)
|
||||
{
|
||||
newwindow= window.open ("","FAS","width=350, height=350");
|
||||
newwindow.document.getElementsByTagName('body')[0].innerHTML = "<form id='postform-form' name='postfrm' action='' method='POST'><input type='hidden' id='postform-textbox-data' name='data' /></form>";
|
||||
newwindow.document.getElementById('postform-textbox-data').value=data;
|
||||
newwindow.document.getElementById('postform-form').action=action;
|
||||
newwindow.document.postfrm.submit();
|
||||
}
|
||||
|
||||
// ****
|
||||
// * Liefert das Aktuelle Studiensemester
|
||||
// ****
|
||||
|
||||
Reference in New Issue
Block a user