Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DanLaufer/195b96ccbe54a922c33676d2a2e5c109 to your computer and use it in GitHub Desktop.
Save DanLaufer/195b96ccbe54a922c33676d2a2e5c109 to your computer and use it in GitHub Desktop.
Drupal 8 - Add onclick javascript to form submit button in php
$form['actions']['submit'] = [
'#type' => 'submit',
'#value' => $submit_button_text,
'#button_type' => 'primary',
'#attributes' => ['disabled' => 'disabled',
'onclick' => "window.open('".$file_url."', '_blank');"],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment