Java Script/Non​-Working Browser Links

When I access my work email through Outlook Web Access, not a enterprise account, I am only able to view my inbox and links, but not able to click on the emails to open them.  Once the email is clicked the page quickly reloads to the top, nothing else.
When I change the emulation mode to Microsoft IE I receive an error message: "You do not have Java Runtime Environment installed or JVM enabled. Do you want to download JRE?"  I click OK and nothing happens.
Thoughts?

Not all webpages are mobile friendly. Your BlackBerry is Java based and you can enable javascript but there is no JVM that can be installed. You would be better serverd by setting up your email account via your carriers BIS website or use the setup wizard on the BlackBerry.

Similar Messages

  • Java script not working in 1 pdf, but same script is NOT working in other

    Dear Experts,
    I have a problem with java script.
    I have created 2 PDFs with the same Form name and sub form names.
    I have written a javascript and this script seems to be working in one (Demand2.pdf) and NOT working in the other (Sample.pdf).
    The link for Demand2.pdf is
    https://acrobat.com/#d=XIydWx1RIU4oNdTySHtHfg
    and the link for sample.pdf is
    https://acrobat.com/#d=sKPRs2dtDY57RSvMVtnh3w
    Can you please guide me on this.
    Many Thanks
    BookFans

    Hi,
    The second file (Sample.pdf) is saved as Static. The script is changing the visual appearance of the form (showing and hiding objects). This requires the file to be saved as a Dynamic PDF. This is available in the save-as dialogue under the file name.
    Good luck,
    Niall

  • Java script not working

    Hi all
    I have a web dynpro abap application with an adobe interactive form. In the form I want to make certain fields read only. To do this I am using java script. It works fine from the livecycle designer in preview mode but when I run the wd4a nothing happens - like the java script is not being executed. I tried changing the Adobe form properties to Acrobat 8 (Dynamic) XML form but it still does not work. Any ideas?
    I'm using ALD 8.0, sapgui 710, Netweaver 7 SP 22 and IE8
    Regards

    Have you checked that you can see the access property, for example, with a message box?
    xfa.host.messageBox(xfa.form.D8.Page2.<my field>.access);
    Also try accesing the field directly
    <my field>.access = "readonly";
    Do you have any script working in your form?
    Regards, Aldo.
    Edited by: Aldo Velazquez on Dec 9, 2010 4:36 PM

  • HOW TO ENABLE JAVA SCRIPT IN MY BROWSER

    when i use edudel site it shows JAVA SCRIPT DISABLED PLEASE ENABLE IT.

    You can enable JavaScript in Tools>Options>Content. It's enabled by default.
    If you still get the message after enabling JavaScript, please try to follow the steps at [[troubleshooting extensions and themes]].
    Please let us know of further progress on the issue.

  • Java script not working in firefox browser

    hi,
    I created my application in struts and it was running perfectly in Internet explorer. My application is a public facing application so now i am in need to run the application in Firefox and safari browsers.
    While running the application in those browsers i am facing the problem in javascript.
    function change() {
              if(document.usedCarSearchForm('usedCarSearchDto.blockCode').selectedIndex==0){
                   document.usedCarSearchForm.command.value="executeLoad";
                   document.usedCarSearchForm.submit();
              }else {
                   document.usedCarSearchForm('usedCarSearchDto.block').value=document.usedCarSearchForm ('usedCarSearchDto.blockCode').options[document.usedCarSearchForm('usedCarSearchDto.blockCode').selectedIndex].text;
                   document.usedCarSearchForm.command.value="executePrefectureLoad";
                   document.usedCarSearchForm.submit();
        }I am calling this onchange() function,
    document.usedCarSearchForm('usedCarSearchDto.blockCode').selectedIndex
    this line is not working
    Help me to resolve this issue.
    Thanks in advance.

    Hi,
    Atlast i found the solution. Its very small change, I changed document.usedCarSearchForm ('usedCarSearchDto.blockCode'). To
    document.usedCarSearchForm ['usedCarSearchDto.blockCode'].
    Now its working.
    I hope this will be useful.
    Thanks.

  • Java script not working in JSP.

    Hi everyone
    I've got a problem with a java scipt that's not doing what I want it to do.
    I have a jsp which gets data from a database to display.
    On the jsp there is a "add" button which on click will open another jsp to add a contact, when I add the contact the jsp calls a web servlet which adds the contact to the database.
    After the contact is added the servlet directs the page back to the contacts page, and it must display the newly added contact in the jsp.
    I've configured a script that checks if there is a attribute called "addContact", if it has a value of "added" it must reload the page on load, which in turn will display the newly added contact, it refreshes but it doesn't display the newly added contact, it worked but after awhile it stopped working.
    Beneath is my code for the contact list jsp and the servlet.
    ContactList.jsp
    <?xml version="1.0"?>
    <%@ page import="contacts.Contacts"%>
    <%@ page import="java.util.*"%>
    <jsp:useBean id = "contactsData" scope = "page" class ="contacts.ContactsData"/>
    <html>
         <head>
              <title>Contact List</title>
              <script language=JavaScript>
              <!--
                   function clicked(clickedValue)
                        if(clickedValue == "add")
                             window.location = "AddContact.jsp";
              -->
              </script>
         </head>
              <%
              String refreshSession = (String)session.getAttribute("addContact");
              if(refreshSession != null && refreshSession.equals("added"))
              %>
              <body onload="window.location.reload(true);">
              <%
              session.removeAttribute("addContact");
              else
              %>
              <body>
              <%
              %>
              <h1>Contacts</h1>
              <form>
                   <table cellpadding="5">
                        <%
                             ArrayList contactList = contactsData.getContacts();
                             Iterator contactsIterator = contactList.iterator();
                             Contacts contacts;
                             while(contactsIterator.hasNext())
                                  contacts = (Contacts) contactsIterator.next();
                                  String contactName = contacts.getContactName();
                        %>
                                  <tr>
                                       <td><input type="radio" name="deleteContact" value=<%=contactName%>></td>
                                       <td><a href = "UpdateContact.jsp?paramName=<%=contactName%>"><%=contactName%></a></td>
                                       <td><%=contacts.getCompany()%></td>
                                       <td><%=contacts.getWorkNumber()%></td>
                                       <td><a href = "mailto:<%=contacts.getEmail() %>"><%=contacts.getEmail() %></a>
                                  </tr>
                        <%
                        %>
                   </table>
                        <br>
                        <input type="button" value="Add" onClick="clicked('add')"/>
              </form>
         </body>
    </html>NewContactServlet.java
    package contacts;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import contacts.*;
    public class NewContactServlet extends HttpServlet
         public void doPost(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException
              res.setHeader("Expires", "Tues, 01 Jan 1980 00:00:00 GMT"); //no cache allowed
              HttpSession session = req.getSession(true); //get current session
              String contactssession = (String)session.getAttribute("contactsSession");
              if(contactssession.equals("add"))
                   Contacts contacts = new Contacts();
                   ContactsData contactsData = new ContactsData();
                   contacts.setContactName(req.getParameter("contactName"));
                   contacts.setCompany(req.getParameter("companyName"));
                   contacts.setWorkNumber(req.getParameter("workNum"));
                   contacts.setCellNumber(req.getParameter("cellNum"));
                   contacts.setFaxNumber(req.getParameter("faxNum"));
                   contacts.setEmail(req.getParameter("email"));
                   contacts.setCountry(req.getParameter("country"));
                   contactsData.addContact(contacts);
              else if(contactssession.equals("add"))
              session.setAttribute("addContact","added");
              res.sendRedirect("ContactList.jsp");
    }

    Ren2407 wrote:
    Hi stevejluke
    Thanks for the reply.
    ContactsData stores the Contacts into a database, Access to be precise.
    The store of the Contacts works fine and it gets redirected to the ContactsList.jsp page, but I need to click refresh on the browser to see the new
    contact. I've tried to make it load automatically when the browser opens but it wouldn't, it worked before.
    I'm using Apache to host the webpage.I don't see any errors.So lemme get this straight:
    You have the contactsList.jsp which when Add is clicked you go to addContact.jsp in the same window. Then when addContact is submitted it goes to the neContact servlet which adds the contact to the database and then sends a redirect back to the contactsList.jsp.
    When contactsList.jsp is re-shown it doesn't display the new data so you are using javascript to force-refresh the page, which used to work, but doesn't anymore.
    My guess is that your browser or some proxy between your browser and server is caching the page. You have to tell all clients not to cache that page using META tags:
    <?xml version="1.0"?>
    <%@ page import="contacts.Contacts"%>
    <%@ page import="java.util.*"%>
    <jsp:useBean id = "contactsData" scope = "page" class ="contacts.ContactsData"/>
    <html>
         <head>
              <title>Contact List</title>
                    <meta HTTP-EQUIV="expires" CONTENT="0" />
                    <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />
                    <meta HTTP-EQUIV="Cache-Control" CONTENT="no-cache" /> You could then get rid of your javascript refresh code altogether.
    p.s. I am a big fan of using JSTL. Try to get rid of all your scriptlets and replace it with JSTL. It would look something like this:
              <h1>Contacts</h1>
              <form>
                   <table cellpadding="5">
                        <c:forEach var="contact" items="${contactsData.contacts}">
                                  <tr>
                                       <td><input type="radio" name="deleteContact" value="${contact.name}"></td>
                                       <td><a href = "UpdateContact.jsp?paramName=${contact.name}">${contact.name}</a></td>
                                       <td>${contact.company}</td>
                                       <td>${contact.workNumber}</td>
                                       <td><a href = "mailto:${contact.email}">${contact.email}</a>
                                  </tr>
                        </c:forEach>
                   </table>
                        <br>
                        <input type="button" value="Add" onClick="clicked('add')"/>
              </form>

  • Java script not working..help plzzzz

    i am trying to do the following but not getting the result..help me plzzz
    admin.jsp
    <html>
    <script language="JavaScript">
    function compare()
    var name1;
    var pwd1;
    var repwd1;
    name1=name.value;
    out.println(name1);
    </script>
    <body>
    <%@ page language="java" import="java.sql.*,java.text.SimpleDateFormat,java.util.*" %>
    <%
    String staff=request.getParameter("staff");
    if ("add".equals(staff))
    %>
    <p>Name<input type ="text" name="name" size="10"></p>
    <p>Password<input type ="text" name="pwd" size="10"></p>
    <p>Re-enter password<input type ="text" name="repwd" size="10"></p>
    <p>Accesslevel<input type ="text" name="Name" size="10">
    <input type="submit" name="b1" value=" Go " onClick="compare()">
    <%}%>
    </body>
    </html>
    i cannot pass the text value to the javascript function...why?..help me plzzzz.

    This is not a javascript forum, but you may want to look up something called document.getElementById().

  • Refreshing java script not working properly

    Hello
    i am using two frames in my system and one is top and other is main.The top frame contains the link and the main frame displays data according to the clicked link.When i refresh the page i will reach to the lending page of my website .but when i did the right click my top frame get refresh it shows the menu of the lending page but my main frame stiill shows the same page from which the refresh button is pressed .
    So what i want to know that do what needs to include to make my right click to work as simillar as refresh button

    Frames are soo 1990. Throw away (better, burn away) that oldfashioned tutorial/book you've learnt the frames from.
    As you're already on JSP, just use jsp:include to include page fragments.

  • What can I use to view java script in my browser for iPhone

    I can't view JavaScript , what do I use instead. Java's web site says that apple has there own version but I can't find it.

    JavaScript works just fine in iOS.
    Java does not.
    They are not the same thing.

  • Passing information from applet  to  java script  of same browser

    Hi
    i want to pass some information from applet button click to same browser window html elements where applet exist. how it can be possible
    Thanks
    Dev

    Use JSObject:
    html file:
         <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
                  height="0" width="0" >
            <param name="code" value="someApplet.class" />
            <!--[if !IE]> Mozilla/Netscape and its brethren -->
            <object classid="java:someApplet.class"
                    height="0" width="0"
                    mayscript=true>
            </object>
            <!-- <![endif]-->
          </object>
    <LABEL id="lblOutputText">This text is the HTML text </LABEL>applet
    // new class for jsObject!!!! compile this: javac -classpath "C:\Program Files\Java\jre1.5.0\lib\plugin.jar" someApplet.java
    // since jaws.jar does not exsist anymore
    // in 1.4.0 to compile: javac -classpath "C:\j2sdk1.4.0_03\jre\lib\jaws.jar" someApplet.java
    // for msjvm use the -source 1.3 -target 1.1 option so the command looks like this:
    // javac -source 1.3 -target 1.1 -classpath "C:\j2sdk1.4.0_03\jre\lib\jaws.jar" someApplet.java
    import netscape.javascript.*;
    public class someApplet extends java.applet.Applet {
        JSObject win;
        public void init() {
             try{
                 win = JSObject.getWindow(this);
    // you need win.eval("window.close();"); // to close the window. if the current window is not a popup
    // opened by a parent with window.open than the user will get a waring, your next question probably will
    // be "can I stop this warning" and the answer is simple: NO
                 JSObject textBoxLabel = (JSObject) win.eval("document.getElementById('lblOutputText')");
                 textBoxLabel.setMember("innerHTML", "<center><h1>Some text from applet</h1></center>");
            }catch(Exception e){
                 e.printStackTrace();
    }

  • Java script not working in Answers

    Hi All,
    I have a problem with my Narrative report which contains Javascript.
    I need to show a checkbox (Checked or Unchecked) using a certain condition.
    This is showing correct output when am doing _"Preview Analysis"_ , but not in the _"Display Results"_ section and not even on the Dashboard.
    Am not really sure what is causing this behavior. Anyone kindly help me to get this report displayed properly on the dashboard.
    Thanks,
    Imtiaz.

    Hi,
    My advise, when ever you are writing javascript for a report. First place the report in the dashboard and then take the view source html code and then write your script accordingly. Because the code in the report and the code when placed in the dashboard always varies.
    Hope this helps.
    Regards
    MuRam

  • Can't get my java script to work

    I'm really not good at this but I need this script to validate input. I want a user to be able to input information but if the amount they input is over 2% of Wages1 I'd like an alert to say it can't be greater than 2% of wages. I'm attaching a pic to help explain what i need. Please help me!

    A picture is not very helpful. Either post the file, or at least the code, plus an explanation of what is going wrong, including any error messages you're getting.

  • Non working Article links

    The links at the bottom of the Knowledge Base article http://support.apple.com/kb/HT2433 all leads to the product support website - http://www.apple.com/support/?artnum=24938 

    This is the link correct link: https://ssl.apple.com/support/feedback/.

  • Need to install firefox on another computer with non-working browser

    Formatted another computer and IE does not work to connect to the internet. Need to download Firefox to external hard drive for installation on the other computer to have internet access.

    Hello hawkgod, go from : http://www.mozilla.org/en-US/firefox/all/
    move the installer to usb and then move it to the next pc and run it.
    also : [https://support.mozilla.org/en-US/kb/install-firefox-windows Install Firefox on Windows]
    make sure that your computer meets the [http://www.mozilla.org/en-US/firefox/19.0/system-requirements/ System Requirements].
    thank you

  • Hangs, won't close, odd error window on start about java script before opening browser

    tried to install latest version but got message that needed to close mozilla windows already running. could not install. An error window opens titled "JavascriptApplication reads:
    "Exc in evhandl:Type Error,this.oRoot,enable is not a function"
    System now hangs terribly, especially on closing, and the error message comes up each time try to open a web page with mozilla.

    You can check for problems with the sessionstore.js and sessionstore.bak files in the Firefox profile folder that store session data.
    Delete the sessionstore.js file and possible sessionstore-##.js files with a number and sessionstore.bak in the Firefox profile folder.
    *Help > Troubleshooting Information > Profile Directory: Show Folder (Linux: Open Directory; Mac: Show in Finder)
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Multiple_profile_files_created
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost and you will have to recreate them (make a note or bookmark them if possible).
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can check for problems with preferences and rename or delete the prefs.js file and possible numbered prefs-##.js files and a possible user.js file to reset all prefs to the default value.
    *http://kb.mozillazine.org/Preferences_not_saved
    *http://kb.mozillazine.org/Resetting_preferences

Maybe you are looking for

  • Does SQL Query run faster with/without Conditions....

    Hi All, forgive my novice question. Was just wondering" In general if we run a SQL query on a single table; does my query run faster if there are multiple where conditions? or without. What happens if the conditions increase? My table is a big one wi

  • Profiles on 6300

    Hi there, I need help... I have set a special ringtone for my group clients. Then I set a ringtone (just a short tone) in my profile "in meetig". But when I activate the profile "in meeting" and any of my clients call me, the phone rings with the rin

  • Extensions with custom EO and VO

    The requirement I have is to add columns of a custom table into oracle seeded page(LeadCrtePG) and have those columns of the custom table get updated to the db when the apply is clicked on the seeded oracle page. I created a custom EO and a VO using

  • Reading large XML file using a file event generator and a JPD process

    I am using a FileEventGenerator and a JPD Subscription process to read a large XML file. The large XML file basically contains repeated XML elements. My understanding is that the file subscription method reads the whole file in memory which causes lo

  • Installation & deletion of games in Nokia E66

    Hi! I have got a E66 recently and installed some games. However, a game named 'Pumpkins' could not be opened nor removed after installed. It just stayed there. What can I do to delete it? Please help...