I'm currently working with a simple datepicker, but I'm encountering an issue where the previous and next button images are not being displayed.
https://jqueryui.com/datepicker/
Everything works fine when using the following link:
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
However, once I copy jquery-ui.css to my local directory, the images fail to display, as shown below:
<link rel="stylesheet" href="css/datatable/jquery-ui.css" />
The browser console shows the following errors:
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_flat_75_ffffff_40x100.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_highlight-soft_75_cccccc_1x100.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-icons_222222_256x240.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-bg_glass_75_dadada_1x400.png"
"NetworkError: 404 Not Found - http://localhost:8080/TestProject/css/datatable/images/ui-icons_454545_256x240.png"
The error is simply due to the fact that these images cannot be found. I am unsure of how to resolve this issue while still keeping jquery-ui.css in my local directory.
Thank you in advance.