- From: Jonas Sicking <jonas@sicking.cc>
- Date: Wed, 5 Aug 2009 21:42:17 -0700
- To: Joćo Eiras <joaoe@opera.com>
- Cc: ~:'' ??????????? <j.chetwynd@btinternet.com>, public-webapps@w3.org
2009/8/1 Joćo Eiras <joaoe@opera.com>:
>>
>>
>> How can one in a script check for UA support?
>> else if(localStorage){}
>> does not work for Opera**.
>
> Hi.
> This obviously does not work because you need to prefix localStorage with
> window "if(window.localStorage)" else the script breaks because localStorage
> is a undefined identifier while window.localStorage looks up a property in
> the window. Different things, specific to ecmascript itself.
No, the window object is the global object where all global variables
are defined. Try the following:
<script>
a = 10;
alert(window.a);
</script>
/ Jonas
Received on Thursday, 6 August 2009 04:43:24 UTC