October 31st, 2007
I ran into a strange bug today while implementing sIRF into Joomla!. Everything seems great until I log into the frontend. Then the titles show this:
Contact Us <!– function olMouseMove(e) { var e = e ? e : event; if (e.pageX) { o3_x = e.pageX; o3_y = e.pageY; } else if (e.clientX) { o3_x = eval(”e.clientX+o3_frame.” + docRoot + “.scrollLeft”); o3_y = eval(”e.clientY+o3_frame.” + docRoot + “.scrollTop”); } if (o3_allowmove == 1) {runHook(”placeLayer”,FREPLACE);if(olHideForm)hideSelectBox(); } if (hoveringSwitch && !olNs4 && runHook(”cursorOff”, FREPLACE)) { olHideDelay ? hideDelay(olHideDelay) : cClick(); hoveringSwitch = !hoveringSwitch; } } //–>
After many hours of frustration we finally came up with a fix!
Read the rest of this entry »
Posted in Developer Center, Joomla, Templates, Javascript | No Comments »
June 5th, 2006
Many people want to have some sort of clock on there site. The quickest and easiet way is to use some sort of Javascript. Below is an example of a what it looks like and then the code following is what is used. I hope this can be of some use to some of you as it is an easy script to read and understand.
Read the rest of this entry »
Posted in Javascript | No Comments »
June 5th, 2006
Many people always come across this issue with popup windows, wanting to give the user a close button so that they can use that instead of the X up at the top.
Just by adding a “a href” tag you can easily and quickly achieve this.
Read the rest of this entry »
Posted in Javascript | No Comments »