Category Archives: WebTechnology

prototype – delete table rows

To delete a table row with prototype: javascript:Element.remove(tablerowdivname) Also, I set up some demos from various sources of other ways of manipulating tables They use these JavaScript functions and call various prototype based javascript. function function1() { document.all.myT.deleteRow(2); } function … Continue reading

Posted in WebTechnology | 1 Comment

joomla iframes how

To use iframes in joomla 1.5, check out the wrapper module (which may not be enabled on your install, depending..). It allows iframe to be displayed. Select Position: User2 to show the wrapper iframe in the content area of rhuk_milkyway. … Continue reading

Posted in MySQL, WebTechnology | Leave a comment

toggle checkboxes javascript using prototype

Toggle All Check Boxes using prototype javascript library. I’ve set up a Demo Page showing this javascript in action. // updated per visitor comment below function toggleChkBoxMethod2(formName){ // toggle Check Boxes using Prototype Library var form=$(formName); var i=form.getElements(‘checkbox’); i.each(function(item) { … Continue reading

Posted in Other Tech, WebTechnology | 11 Comments