multiple datepicker instances
I have successfully implemented a datepicker following the examples in the documentation.
To create multiple datepicker instances in one document I thought I could do something like:
$(function dpInit(dpId) {
$(dpId).datepicker({....});
});
However, how do I call dpInit?
tia, cb