Open Jan-Paul-Kleijn opened 8 years ago
In your explanation it says:
<script language="javascript"> jQuery(document).ready(function($) { $('#color1').colorPicker(); } </script>
<script language="javascript">
jQuery(document).ready(function($) {
$('#color1').colorPicker();
}
</script>
But I guess you forgot the last closing parenthesis after the curly braces. So It needs to be:
<script language="javascript"> jQuery(document).ready(function($) { $('#color1').colorPicker(); } ) </script>
} )
Hope it helps, thanks for the tool!
In your explanation it says:
<script language="javascript">
jQuery(document).ready(function($) {
$('#color1').colorPicker();
}
</script>
But I guess you forgot the last closing parenthesis after the curly braces. So It needs to be:
<script language="javascript">
jQuery(document).ready(function($) {
$('#color1').colorPicker();
} )
</script>
Hope it helps, thanks for the tool!