Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save light9/ac01cd359e9cf23828f9 to your computer and use it in GitHub Desktop.

Select an option

Save light9/ac01cd359e9cf23828f9 to your computer and use it in GitHub Desktop.
send variable from .php file to .js file in Drupal 7
drupal_add_js(array('YOURMODULE' => array('testvar' => $testvar)), array('type' => 'setting'));
And in your JavaScript, you can the access the value in Drupal.settings.YOURMODULE.testvar:
alert(Drupal.settings.YOURMODULE.testvar);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment