El problema que tengo es que no cambian las imagenes, a que se debe esto? como recargo el src?
Código Javascript:
Ver original
$(document).ready(function() { $('#container').beforeAfter({ beforeLinkText:"Antes", afterLinkText:"Después", animateIntro : true, introDuration : 500, showFullLinks : false, dividerColor: '#FF0000', enableKeyboard:true }); function getRandValue(){ $.ajax({ type: "GET", dataType: "json", url: "prueba2", success: function (d) { f = new Date(); $("#1").attr("src", "http://192.168.102.8"+d.uno+"?"+f.getTime()); $("#2").attr("src", "http://192.168.102.8/"+d.dos+"?"+f.getTime()); } }); } setInterval(getRandValue, 3000); });
Código PHP:
Ver original
Route::get('prueba2', function () { return response()->json($cam); });