skip to Main Content

How to get data from jquery form builder if there are multiple form initialized on the same page

I have a code like this: <html> <head> <title>Example formBuilder</title> </head> <body> <div class="build-wrap"></div> <div class="build-wrap"></div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script> <script src="https://formbuilder.online/assets/js/form-builder.min.js"></script> <script> jQuery(function($) { $(document.getElementsByClassName('build-wrap')).formBuilder(); }); </script> </body> </html> If it was initialized by id, then I could have…

VIEW QUESTION

How to get data from jquery form builder if there are multiple form initialized on the same page

I have a code like this: <html> <head> <title>Example formBuilder</title> </head> <body> <div class="build-wrap"></div> <div class="build-wrap"></div> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script> <script src="https://formbuilder.online/assets/js/form-builder.min.js"></script> <script> jQuery(function($) { $(document.getElementsByClassName('build-wrap')).formBuilder(); }); </script> </body> </html> If it was initialized by id, then I could have…

VIEW QUESTION
Back To Top
Search