I have two strings one brings me a time ie:
var gettime= $("#select-choice-2 :selected").text();
it gives me time in 24 hr format like this
17:45
but i want my time to be in a format like
17:45:00.000
for which i made a string
var ext=':00.000';
I want these two strings to concatenate in such a way to give me proper result.
I see now whats the problem is my "gettime" is not a proper string, i tried it to show in alertbox but nothing happens, so please tell me how to convert gettime into a string.
I got it "gettime" is a local variable and ext is using in some other function thats why "gettime" was not appearing in alertbox, stupid ehh :p