Showing posts with label general. Show all posts
Showing posts with label general. Show all posts

Wednesday, June 16, 2010

Citrix: how do you ctrl + alt + delete ?

in Citrix, the ctrl + alt + delete can be done like this:
ctrl + f1

Thursday, April 3, 2008

Javascript - properties for any HTML object

Sometimes you need to see what properties can you use for any given object.
Just copy-paste this:



var stuff = '';
for (p in document.Form1.elements)
stuff = stuff + ' ' + p;
alert(stuff);



( ... and replace the document.form1.elements with anything you'd like. For example document.body, or document.getElementById("someTDfromYourTable"), etc. ...)