Site icon Hip-Hop Website Design and Development

Rhyzz Repeatable-fields javascript in php and wordpress

I am having a tough time determining why my repeatable fields javascript does not work. I am utilizing the next plugin: Rhyzz (repeatable-fields): http://www.rhyzz.com/repeatable-fields.html. I scraped the web site and I see he ran the script inside html and in addition ran his javascript all on the identical web page. My web site is so much bigger. I am utilizing WordPress and I did the next to name the script in capabilities.php.

 wp_enqueue_script( 'jquery', 'https://code.jquery.com/jquery-1.11.2.min.js', array(), '20120206', true );
 wp_enqueue_script( 'jquery-ui', 'https://code.jquery.com/ui/1.11.4/jquery-ui.min.js', array(), '20120206', true );
 wp_enqueue_script( 'jquery-repeatable',  get_template_directory_uri() . '/js/repeatable.js', array( 'jquery', 'jquery-ui' ), '20120206', true );

I even have about one other 10 scripts. The recordsdata are all within the correct directories. I then have a selected web page on my website (PHP) implementing the repeatable fields, however not one of the buttons work. I haven’t got the next anyplace, and I do not know if it’s a necessity, however on Rhyzz’s website he places it in his HTML:

jQuery(perform() {
    jQuery('.repeat').every(perform() {
        jQuery(this).repeatable_fields();
    });
});

I am very pissed off and do not know what to do. I additionally do not know if I am enqueueing the script correctly, as in if I ought to go in jquery and jquery-ui into the array discipline. If anybody will help me with this please achieve this!

Word: That is Rhyzz’s GitHub with a tutorial on how one can implement in HTML, https://github.com/Rhyzz/repeatable-fields.