In your jsp code set a variable to be the value you want, as shown earlier in this thread by Balwinder, and then read that variable in your Javascript code. If you're using OO javascript, you can make it nice and tidy by passing the parameter in your "constructor", or set it in a method. Example:
var obj = new FancyObject('<bean:message key="app.mykey" bundle="MESSAGE">'); // -- or -- obj.setSomeValue('<bean:message key="app.mykey" bundle="MESSAGE">'); Make sense? On Thu, Aug 7, 2008 at 7:03 PM, nauke. <[EMAIL PROTECTED]> wrote: > Thanks for that. > I think that only works if the javascript is within the JSP file right? > My javascript functions are in it's on .js file ... > > On Thu, Aug 7, 2008 at 8:23 PM, Balwinder <[EMAIL PROTECTED]> wrote: > >> nauke. wrote: >> >>> Hi all, >>> >>> Is there a way to access values in ApplicationResources.properties in >>> Javascript functions? >>> I've found a way where I can just pass a value from the app resource file >>> as >>> a parameter, but discovered that I return alerts with different messages >>> based on some criteria. >>> >>> Any ideas? >>> >>> Thanks heaps >>> >>> >>> >> Try this >> <script> >> var someVar = '<bean:message key="app.mykey" bundle="MESSAGE">'; >> </script> >> >> >> hope this will serve the purpose. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]