Errors with multiple libraries. Any advice?

Errors with multiple libraries. Any advice?

I have read multiple stack questions on this topic, and have spent many hours researching a solution to this problem. I had all but one of my form field validations working with parsley js, and had posted a topic about getting it to work with no answer in sight.

I have since changed over to the jquery validation library to attempt to solve a conflicting libraries problem. I have implemented the noconflict mode (I have tried at least 5 variations of this code to attempt to eliminate errors) with no success. Right now, scripts appear to be working but the following errors show up in devtools (chrome):

Uncaught TypeError: Cannot call method 'replace' of undefined jquery.form-validator.min.js:10 (anonymous function) jquery.form-validator.min.js:10 x.extend.each jquery-1.10.2.js:657 x.fn.x.each jquery-1.10.2.js:266 $.fn.showHelpOnFocus jquery.form-validator.min.js:10 (anonymous function) jquery.form-validator.min.js:10 (anonymous function) jquery.form-validator.min.js:10 x.extend.each jquery-1.10.2.js:657 $.split jquery.form-validator.min.js:10 $.validate jquery.form-validator.min.js:10

Here is the code that I am using currently (I am going to keep attempting to troubleshoot though until the issue is solved):

<script language="javascript" src="js/jquery-1.10.2.min.js"></script> <script> jQuery.noConflict(); </script> </script> <script src="js/bootstrap.min.js"></script> <link href="css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="css/demo.css" /> <link rel="stylesheet" href="css/register-form.css" /> <script language="javascript" src="js/protoplasm.js"></script> <script language="javascript"> Protoplasm.use('datepicker') .transform('input.datepicker') .transform('.datetimepicker', { timePicker: true }); </script> <script language="javascript" src="js/jquery.form-validator.min.js"></script> /////there is the html, body, form, etc... here////// <script> jQuery.validate({ modules : 'security' }); </script>