| http://www.w3.org/ns/prov#value | - User will click again here is a script that I use to wait until something is available function until( test, callback ) { if( test() == true ) callback(); else { window.setTimeout( function() { until( test, callback ) }, 100 ); } } On a hyperlink which has likely to be clicked before the scripts download, I use this: Click me before script loads oazabir
|