Hola
@_cronos2 es lógico los métodos que has usado, pero el problema que tu función no resuelve es que el valor hora se toda de un registro de la bd. Debería de ser algo como esto
Código Javascript
:
Ver originalvar horas = '3:00';
var division = horas.split(':');
function funcion(){
var hoy = new Date();
var fecha = new Date(hoy.getYear(), hoy.getMonth(), hoy.getDay(), division[0], parseInt(division[1]-15))
alert(fecha.getHours()+ ' : ' +fecha.getMinutes());
}
Suerte