Skip to main content

To add external js in drupal 7 from hook

To use jQuery in drupal 7 custom hook.


function hook_add_html_head() {
drupal_add_js(" js file path");
}


This gives the functionality as we can use the $ sign in js file.
If we only use drupal_add_js() then we use jQuery instead of $.


To know details :- Click Here

Comments

Popular posts from this blog

New Services to the world

Different government services & Online Services GST Registration Company Registration ITR PAN Card Aadhar Card E-way Bill Registration Food License Accounting Service Website designing Website development Website Hosting Website Domain Website Testing (Manual) Website SCO Optimization Lead Generation Add Creation and many more...

Create Hooks in Civicrm in Joomla 1.5

  Create Hooks in Civicrm in Joomla 1.5 Create folder in any directory like /Joomla/media/civicrm_hook . Create file civicrmHooks.php in this directory. Go to Administer CiviCRM > Global Settings > Directories Set the path for custom php here. Use the civicrm hooks with Joomla_civicrm_hookName format. Ex. function Joomla_civicrm_buildForm( ){ // Write your code here. }