We can convert PHP date to javascript date as; var dateStr=”2011-08-03 09:15:11″; //returned from mysql timestamp/datetime field var a=dateStr.split(” “); var d=a[0].split(“-“); var t=a[1].split(“:”); var date = new Date(d[0],(d[1]-1),d[2],t[0],t[1],t[2]); Read More »
You are here: Home > Javascript
Javascript
Feed SubscriptionZoom image in jquery
You can find nice collections of zoom image in jquery plugins from the list of undermentioned urls. http://www.professorcloud.com/mainsite/cloud-zoom.htm http://www.tripwiremagazine.com/2010/02/15-jquery-plugins-to-create-stunning-image-zoom-effects.html http://www.denbagus.net/jquery-image-zoom-and-tutorial/ Read More »
jqzoom not working
I used jqzoom in one of my website and found that it stopped working. jqzoom not working as the binding facility of jquery was not getting executed. So I tried cloud zoom and its working fine. So if anyone trying to use jqzoom keep in mind that it conflicts with jquery. And for cloud zoom you can find this in ... Read More »