in Citrix, the ctrl + alt + delete can be done like this:
ctrl + f1
SQL, C#, VB, .net, asp, JavaScript, you name it. Code samples, Error messages and stuff like that. Please add coments if you think I said something stupid :D or if you have a better idea ... or anything at all ...
Showing posts with label general. Show all posts
Showing posts with label general. Show all posts
Wednesday, June 16, 2010
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. ...)
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. ...)
Subscribe to:
Posts (Atom)