jquery - datetime picker background showing messy -


i create datetimepicker dateofbirth. use following jquery code,

my code is

$("#dob").datepicker({     dateformat: "yy-mm-dd",     changemonth: true,     changeyear: true,     yearrange: "-100:-16" }); 

when execute 1 local file result showing good. in server showing messy

this issue of designing. perhaps jquery ui , css file not included on server or have forgot upload it. check there files of css , jquery ui , check there files found on server.

you can check seeing code of page.


Comments

Popular posts from this blog

c# - Operator '==' incompatible with operand types 'Guid' and 'Guid' using DynamicExpression.ParseLambda<T, bool> -