Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $rnd_id = dt_random_id(3);
  2. $token = wp_generate_password(5, false, false);
  3. wp_enqueue_script('script_js', 'scripts.js', [], null, true);
  4. wp_localize_script('script_js', 'object_name_'.$token, array(
  5. 'id' => $rnd_id,
  6. 'var_name' => 'var_val',
  7. )
  8. );
  9.  
  10. <div class="class_name" id="id_prifix-'.$rnd_id.'" data-token="'.$token.'">
  11. </div>
  12.  
  13. jQuery('.class_name[id^="id_prifix"]').each( function() {
  14. var div = jQuery(this);
  15. var token = div.data('token');
  16. var settingObj = window['object_name_' + token];
  17. console.log(settingObj);
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement