Java script error!!!?? please help me...

Hi eveyone,
I'm not able to access many websites in my system. and m not able to login to some of d sites. Is this bcoz my system is displaying "java script error". how can I fix it? whether I need to download something? If s guide me in detail as I have no computer knowledge.
Im in a hurry. pl help me...

gayathri_bna wrote:
Im in a hurry. As a suggestion...find someone locally and pay them to fix your computer.
This site is for programming java not for fixing computers.

Similar Messages

  • " loading failed please check your page for  java script errors" please Help

    recently my project starts crashing.... when it loads it gives a java scrip error .. saying " loading failed please check your page for  java script errors"

    Hey, If you have an error, you should see the error in Edge and you can correct it. In the window/code there will be a red dot too.

  • Java script problem; please help !

    Hi,
    I am selecting value from drop down.As soon as I am selecting the value I am displaying the value in one
    text area. This text area is having already some text.Iam appending the value from drop down to this text area.
    The problem is when I do first time it is fine,but second time when I select value from drop down to
    display in text area. this value is getting appended with the first value.
    I do'nt want the first value.What I want is when second time I select the value from drop down.The
    first selected value get replaced by second value.
    This is the script I am using.
    function emailAdd(item) {
    document.mailForm.to.value =
    item.options[item.selectedIndex].value;
    document.mailForm.content.value ="Email Address:" +
    document.mailForm.to.value
    + '\n' + document.mailForm.content.value
    }Please help me and it would be GREAT that if someone can send me an updated code. Thanks and have a wonderful week-end !!!!
    -sangita

    First and foremost: "JavaScript".equals("Java") not "JavaScript".startsWith("Java")
    That aside, you need to keep the original value...
    var orig = '';
    function emailAdd(item) {
       if(orig == '') {
          orig = document.mailForm.content.value;
       document.mailForm.to.value = item.options[item.selectedIndex].value;
       document.mailForm.content.value =orig + '\n' + document.mailForm.content.value;
    }

  • My fastdial is no longer appearing on a blank tab and every time I click on addons it freezes and has a script error - please help!

    When I click the fastdial button which has appeared on my navigation toolbar - it takes me to chrome://fastdial/content/fastdial.html so I figured that it is chrome that caused the problem.
    When I click on tools/addons I get a script error and a frozen firefox.
    Also can not use any toolbar links and have to type in the address into navigation to get anywhere.
    I don't know what else to try!

    Other users have reported that this is caused by one of their add-ons. I suggest going to the Add-ons page and disabling everything that is not essential, and then restarting Firefox. Hopefully it's not caused by something you really rely on.
    orange Firefox button ''or'' Tools menu > Add-ons
    On the left side, click Extensions
    Then disable as many as possible and restart Firefox.
    Any luck?

  • Photos Break in DW3 - HTML Java script Errors in HELP

    Hi
    I just opened DWCS3 for the first time since I purchased the Suite last year.
    Before this,I was using the Dreamweaver from right before Adobe took over the company, in my G-4 MAC Powerbook and Tiger 10.4.8.
    I created a website in that program.
    Now I have a MacBook Pro, using Leopard 10.5.7 and DWCS3.
    All my files were transferred to this new computer as they were on my Powerbook.
    Today, I tried to open my website in DW3 and encountered the following problems:
    1) None of the images appeared. Instead, I got "broken" icons in their place.
    2) When I went into "HELP" I got this message: The following JavaScript error(s) occured: Unable to open script file: Macintosh HD: Applications: Adobe Dreamweaver CS3: Configuration: Commands: Clean Up Word HTML.js"  (error 2 ).
    #2  - what does this means.
    #1  - can anyone tell me why the images are broken and won't open?
    I am not so knowledgable in this program. I can do basics. I don't know what the problems are.
    I don't know troubleshooting that well.
    Can someone help me with this??
    Thank you!!!

    First, although the names might seem confusing, Dreamweaver CS3 is NOT DW3. DW3 was released about ten years ago, and is very much out of date. DW CS3 is the version released in 2007. Please use the correct version name. Otherwise, your questions are likely to be ignored.
    As for why you get broken image icons, the answer probably lies in the way you have defined the site in Dreamweaver. Press F1 and read the Help pages about setting up a site in Dreamweaver.
    As for the JavaScript errors, did you check the Dreamweaver FAQ before posting here? It contains an item, JavaScript and other unexpected errors, that answers your question.

  • SQL SCRIPT ERROR PLEASE HELP!!!

    DROP TABLE CUSTOMERUSER CASCADE CONSTRAINTS;
    CREATE TABLE CUSTOMERUSER
    ( Username VARCHAR(10) NOT NULL,
    UserID VARCHAR(15) NOT NULL,
    Pword VARCHAR(30),
    Street VARCHAR(15),
    City VARCHAR(15),
    Postalcode VARCHAR(15),
    Phone VARCHAR(10),
    Email VARCHAR(16),
    PRIMARY KEY (Username,UserID));
    DROP TABLE ADMINISTRATOR CASCADE CONSTRAINTS;
    CREATE TABLE ADMINISTRATOR
    ( Username VARCHAR(10) NOT NULL,
    EmployeeID VARCHAR(15) NOT NULL,
    Pword VARCHAR(30),
    AdminType VARCHAR(15),
    PRIMARY KEY (Username,EmployeeID));
    DROP TABLE FLIGHT CASCADE CONSTRAINTS;
    CREATE TABLE FLIGHT
    ( FlightID VARCHAR(10) NOT NULL,
    FlightNumber VARCHAR(15) NOT NULL,
    Airline VARCHAR(30),
    AvailableSeats INT,
    PRIMARY KEY (FlightID));
    DROP TABLE RESERVATION CASCADE CONSTRAINTS;
    CREATE TABLE RESERVATION
    ( ReservationNumber VARCHAR(10) NOT NULL,
    IsPaid VARCHAR(4) NOT NULL,
    dayof VARCHAR(10),
    FlightID VARCHAR(10) NOT NULL,
    UserID VARCHAR(15) NOT NULL,
    PRIMARY KEY (ReservationNumber,UserID),FOREIGN KEY (FlightID) REFERENCES FLIGHT(FlightID),FOREIGN KEY (UserID) REFERENCES customeruser(UserID));
    DROP TABLE PAYMENT CASCADE CONSTRAINTS;
    CREATE TABLE PAYMENT
    ( PaymentID VARCHAR(10) NOT NULL,
    PaymentAmount VARCHAR(15) ,
    PaymentDate VARCHAR(30),
    ReservationNumber INT NOT NULL,
    PRIMARY KEY (PaymentID),FOREIGN KEY (ReservationNumber) REFERENCES RESERVATION(ReservationNumber));
    DROP TABLE FLIGHTSCHEDULE CASCADE CONSTRAINTS;
    CREATE TABLE FLIGHTSCHEDULE
    ( FlightNumber VARCHAR (15) NOT NULL,
    Fromw VARCHAR(25) ,
    Wto VARCHAR(25),
    DepatureDate VARCHAR(10) ,
    ArrivalDate VARCHAR(10),
    Class VARCHAR(10) ,
    DepatureTime VARCHAR(8),
    ArrivalTime VARCHAR (8) NOT NULL,
    PRIMARY KEY (FlightNumber),FOREIGN KEY (FlightNumber) REFERENCES FLIGHT(FlightNumber));
    When i execute the RESERVATION section. it gaving me a error called " *
    ERROR at line 7:
    ORA-02270: no matching unique or primary key for this column-list
    How to fix that?

    in TABLE RESERVATION the FOREIGN KEY (UserID) REFERENCES customeruser(UserID) expects the primary key of TABLE CUSTOMERUSER to be UserID (not PRIMARY KEY (Username,UserID) as in your case) or the TABLE CUSTOMERUSER having an unique index on UserID.
    Regards
    Etbin
    Edited by: Etbin on 3.12.2011 22:22
    You might be sorry defining DepartureDate as VARCHAR2(10) and DepartureTime as VARCHAR2(8) instead of Departure DATE (time component included)
    the same for ArrivalDate in TABLE FLIGHTSCHEDULE
    in TABLE RESERVATION there is dayof VARCHAR(10) too

  • Script Error Please help.

    I have made a small animation and wanted to test the use of
    buttons. On my button I have entered the following code using
    actionscript 3.0
    on (release) {
    gotoAndPlay ("moviestart");
    and it says 1087: Syntax error: extra characters found after
    end of program. the source is on (release) {. What is wrong?
    Also how can I make my program pause until the button is
    clicked? I have tried creating another layer and using the action
    pause on it then putting a rectangle at "moviestart" and when I
    test the movie it just shows the button then the rectangle and
    loops.
    By the way I am using CS3 Professional

    how do I get to "Programming ActionScript 3"?
    Also I have made a small movie in flash and was wondering how
    I get get an [IMG] code of the movie so I can put it on a from like
    www.nexopia.com. One more thing is how can I set the movie not to
    start until I click on the button. I have a play button at the
    start and would like to make the program freeze until the button is
    clicked or even just until someone clicks on the video.

  • Java Script Error while deploying a Model with Value Help

    Hi,
    I am using EP 7.0 SP 10.
    I am trying to deploy a model which includes the Value Help for an Input field, and i am trying to deploy this model.
    The model compiles successfully, but gives a Java Script Error while deploying the model,
    ! Error on Page
    When Click on this java script error, it shows that ,
    Line:14985
    Char 1: Error
    object does n't support this property or method.
    code
    URL: <serverhost>/VCRes/WebContent/VisualComposer6.0/bin/223334.htm?24102006.1712.
    The Same model works in dev server, and it fails in the production server.
    Thanks and Regards,
    Sekar

    Hi jakob,
    Thankyou for your quick response.
    I did a basic model with the help of a documentation which i got from this forums.I created a iView and from there i used Bapi "BAPI_SALESORDER ".
    I created a Input Form and a outpot form (table view).I tested model and am able to get the output.but when i try to deploy it is giving me the error.
    And i think am not paring any formulas here.
    Please guide me.
    thanks and regrads
    Pradeep.B

  • Getting tha java script error while calling OAF forms in ADF

    Hi ,
    I am trying to get/access the Oracle forms in ADF page.
    I am following http://static.commit-consulting.com/oraformsfaces developers guide for guidlines.
    while runnign my page getting the error in popup look like java script error.
    the pop up contente is :
    Failed to execute java script
    Check for JavaScript errors, if the Forms server is running and if your browser can download a javaScript from http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces
    http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces is my server EBS server where oracle forms exist.
    Please help me on this.
    Thanks,
    MadhavaReddy

    You're probably better off asking the OraFormsFaces people for help

  • V 3.6.16 unresponsive script in Gmail, jave script errors on some other sites.

    Hi,
    I'm using FireFox v 3.6.16 (afraid of 4 once I read of similar problems) and whenever I go to Gmail, I got unresponsive script errors that make it hang up repeatedly. I did something that got rid of the message but not the hang ups (sorry, can't remember what). I also occasionally get Java script errors specifically on some other sites. Please help--I love FireFox. I've running Vista Home Premium on an Athlon 64 x 2 (PC), but I also had this problem on XP.

    See this page for help, also lists several extensions
    * http://kb.mozillazine.org/Unresponsive_Script_Warning

  • Java script error. Error umber 45

    I have read the technote related to this issue. When trying to open InDesign CS3, I get a "Java Script Error. Error number; 45 errorstring: object is invalid in line 387...followed by the same error message in line 428.
    the tech note says to go to c:\Documents\<username>\application Data\Adobe\InDesign\Version 5.0 and delete the pluginconfig file.
    I do not have that file on my computer.
    can someone tell me how to find the file I need to delete?
    Thanks

    Hi and Welcome to the forums!
    debraweddall wrote:
    I believe for java script error I have to delete all device software and reinstall. Is that correct and what is the correct procedure?
    IMHO, you'd need to describe the error better than that before leaping to the treatment plan that you are describing. Please describe the symptom with more details if you'd like different recommendations.
    Best.
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Getting Java Script error:(0) in travel and expenses in ESS

    Hi All,
       I  had one issue in ESS Travel and expenses ,when I am clicking on Travel and Expenses ->Moment  Order
       After giving the details I am clicking On -->Add Flight   ,after that it is giving blank screen
       in bottom of the line getting error : java script error :(0)
           Please share your knowledge ..
    Thanks,
    Sony.
    << moved by moderator - check out the list of other forums on top of portal forum >>
    http://forums.sdn.sap.com/thread.jspa?threadID=1239838&tstart=0
    Edited by: Anja Engelhardt on Feb 15, 2012 1:06 PM

    Hi,
    Please take help of Basis team and IT team for updating JAVA in your system for ESS.
    And also get it checked by Basis team if the correct internet explorer version is applied to the system you are using for employee self service.

  • Keep getting java script errors in DW CS3

    I have been using Dreamweaver CS3 and had not had problems up to last month or so. Now I keep getting Java errors and java script errors whenever i try to put a file to my site or even on some task boxes that have undefined in the command box instead of the normal command. I am wondering if downloading product again could help but i worry about licensing problem. It seems like there is no support for CS3 Dreamweaver.
    I resent the fact i may have to upgrade to Dreamweaver CS5. IF I do can I just upgrade Dreamweaver and not the other programs as part of the web design suite? My last upgrade was the CS3 web design suite.
    Gary

    Thanks for the suggestion, I followed the links and instructions and still have same problem. Very frustrating as I cannot get any phone support, actually i was told Dreamweaver CS3 is not being supported anymore, and I was directed to this forum.
    Kind of makes me not like Adobe and I am going to search for another web building program. Once I calm down I may consider just upgrading to CS 5 Dreamweaver. Do I have to upgrade the entire Web Design suite or can I just upgrade Dreamweaver?
    Another option is to try and reinstall but I worry I can run into licensing problems (I think I ran into this before as destop and laptop crashed and had to reinstall).
    Gary

  • Java Script Error

    Saved various websites which I was researching a trip with and about a week later opened them all up and got this error.
    Java Script: error in konaSafe reporting   it gave me the option to click OK which I did and it repeated itself 3 times before it quit.
    Any idea what is happening here
    Thanks

    I'm using Safari 5.1.7 and I'm using Snow Leopard 10.6.8 Intel.
    Ok I did a bit more experimenting and it turned out to be just one of the half a dozen web sites that I had archived during my research for a trip.
    When I had gone back to them and opened them up I did so as a block and that's when I got the error.
    This time I opened them one by one and found that just one of them was the culprit.
    It appeared that somehow an Add company called Invite had superimposed a Lufthanser rental add across part of the website which prevented me from using the website until I had clicked on their rental link.
    I searched for and  brought up the original website from Google and it opened up without the Add and I didn't get the Java Script error.
    Don't know just why only one of my original saved websites was affected but I'm sure that the Add by Invite had been the problem.   I have now opted out of that company's add program not that I had ever opted in.
    Thanks Brody for the suggestions and help.

  • All-11-otn4.js - Page Stops responding due to Java script error

    Hi,
    I am getting java script error in all-11-otn4.js. My page becomes unresponisve and I am getting the cause as all-11-otn4.js file. After this error I cannot do any thing in page, I need to restart IE.
    I am navigating from one View state to another View state and then again comming back to original view state. When I am comming back to Original View state, I am getting this error.
    - Sujay

    Hi,
    what you describe doesn't help solving the issue. What do you mean by "I am navigating from one View state to another View state" ? Also it seems that you on a non production version of JDeveloper11 (TP4), so can you pelase try a production version ?
    Frank

Maybe you are looking for

  • Best practice for remote topic subscription with HA

    I'd like to create an orchestrator EJB, in cluster A, that must persist some data to a database of record and then publish a business event to a topic. I have two durable subscribers, MDBs on clusters B & C, that need to receive the events and perfor

  • What should I do?  My mac mail was hacked.

    If the answer is that I need to shut down that mail address, how do I do that?  Thank you!

  • All characters on screen shown as a capitol A in a box.

    My Macbook Pro is displaying all characters on screen as a capitol A in a box.  It is also crashing the display picture when i click on things.  Any help much appreciated,thanks.

  • Change directory and execute script

    I'm trying to write a small program that gets 4 input values from the user and based on the first 3 values will change to a specific directory on a unix system. Using the fourth value it will execute a perl script in the directory. The fourth value i

  • SUS - Hide / Disable column table

    Hi Experts, I need to hide or disable two columns within the edit order screen in SUS. When you display a purchase order in SUS and then click on process button two buttons are displayed in the item details table for accept or reject PO positions. I