admin管理员组

文章数量:1336659

Although I have imported materialize.js (v1.0.0) inside my plugin in WordPress with

$pluginpath = dirname (plugin_dir_url( __DIR__  ));
$pluginpath = str_replace('\\','/',$pluginpath);
$thepath = $pluginpath . '/js_libs/materialize.js';
wp_enqueue_script('wpunity_materialize_jslib', $thepath);

and in my main function

wp_register_script( 'wpunity_materialize_jslib', plugin_dir_url( __FILE__ ) . 'js_libs/materialize.js', null, null, false);

I keep getting

jQuery(...).material_chip is not a function

for this code

<div id="textarea-collaborators" class="chips-autocomplete"></div>

                    <script>
                        jQuery( document ).ready(function() {
                            jQuery('.chips-autocomplete').material_chip({
                                secondaryPlaceholder: 'Your collaborator email',
                                placeholder: 'Your collaborator email'
                            });
                        });
                    </script>

Although I have imported materialize.js (v1.0.0) inside my plugin in WordPress with

$pluginpath = dirname (plugin_dir_url( __DIR__  ));
$pluginpath = str_replace('\\','/',$pluginpath);
$thepath = $pluginpath . '/js_libs/materialize.js';
wp_enqueue_script('wpunity_materialize_jslib', $thepath);

and in my main function

wp_register_script( 'wpunity_materialize_jslib', plugin_dir_url( __FILE__ ) . 'js_libs/materialize.js', null, null, false);

I keep getting

jQuery(...).material_chip is not a function

for this code

<div id="textarea-collaborators" class="chips-autocomplete"></div>

                    <script>
                        jQuery( document ).ready(function() {
                            jQuery('.chips-autocomplete').material_chip({
                                secondaryPlaceholder: 'Your collaborator email',
                                placeholder: 'Your collaborator email'
                            });
                        });
                    </script>
Share Improve this question asked May 19, 2020 at 10:37 Dimitrios VerveridisDimitrios Ververidis 1426 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

I found it.

wp_enqueue_script('wpunity_materialize_jslib', $thepath);

has to be called last, after all other calls to enqueue scripts that invoke jQuery.

SOLVED

本文标签: front endHow to use jQuery()materialchip inside WordPress