Uncaught TypeError: Cannot call method 'match' of undefined -- mobiscroll.datetime.js:78
I am totally unsure if I am calling the correct scripts when implementing as I could not find details from within the Github docs. This is running off of the jQuery and jQuery Mobile libraries.
HTML Snippets:
<link rel="stylesheet" type="text/css" href="css/mobiscroll.scroller.css" />
<link rel="stylesheet" type="text/css" href="css/mobiscroll.scroller.android.css" />
<form>
<label for="reg_dob">Date of Birth</label>
<input name="reg_dob" type="text" id="reg_dob" />
<script type="text/javascript" src="js/mobiscroll.core.js"></script>
<script type="text/javascript" src="js/mobiscroll.datetime.js"></script>
<script type="text/javascript" src="js/mobiscroll.scroller.js"></script>
<script type="text/javascript" src="js/mobiscroll.scroller.android.js"></script>
JS Snippets:
$('#reg_dob').mobiscroll().date({
theme: 'android',
display: 'bottom',
mode: 'scroller'
});