Scriptable Plugin not working in firefox 4 and above

Using firefox 4 on opensuse.
Using JSP to access scriptable plugin which is scripted in .js file.
here is the summary of how I am using it-
at the head of the .jsp file -
<SCRIPT language="JavaScript">
if (someCondition) {
document.write("<OBJECT ID=PluginAccess CLASSID=clsid:36723f97-7aa0-11d4-8919-FF2D71D0D32C> </OBJECT>");
document.write("<OBJECT ID=\"mozembed\" type=\"application/my-plugin\"></OBJECT>");
</SCRIPT>
these are the last two line of my .jsp file -
<IFRAME NAME="request" HEIGHT="0" WIDTH="0" SRC="<%= c.getModulesUrl() %>/javascripts/Response.htm" FRAMEBORDER="no">
</IFRAME>
<IFRAME NAME="response" HEIGHT="0" WIDTH="0" SRC="<%= c.getModulesUrl() %>/javascripts/Response.htm" ONLOAD="ParseResponse();" FRAMEBORDER="no">
</IFRAME>
in .js file in ParseResponse(), getting a string -
var responseStr = response.document.location.search.substr(1);
Till firefox 3.6.19, reponseStr is getting populated perfectly. but in later version like firefox4 and firefox 5, responseStr is empty.
There is no error in the error console of firefox.
Thanks in advance.

That extension has a maxVersion of 3.*.* (3.0.* in update.rdf) and can't be installed in Firefox 4.
<pre><nowiki><em:minVersion>1.5</em:minVersion>
<em:maxVersion>3.*.*</em:maxVersion></nowiki></pre>

Similar Messages

  • JQuery/Javascript not working on Firefox and Chrome

    Hi guys, I've had this Jquery/Javascript on my page for a long time. This has stopped working. If the user clicks on buttons on the Apex page, nothing happens.
    It works on IE but doesn't work on Firefox and Chrome. It used to work fine.
    Is there anything I can change to make it work on all 3 browsers?
    Firefox error console shows a syntax error at this point in the script:
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    Please can someone help?
    This is the full script:
    <script type="text/javascript">
    //<![CDATA[
    var itemChanged = false;
    $(document).ready(function(){
    var $items = $(':input');
    var $htmlButtons = $(':button[id]');
    var $templateButtons = $(':button[class]');
    var $allButtons = $($htmlButtons).add($templateButtons);
    $items.change(function() {
    itemChanged = true;
    $templateButtons.attr('data-submitval', function(){
    return $(this).attr('onclick').toString().split('\n')[2];
    $htmlButtons.attr('data-submitval', function(){
    return this.id;
    $allButtons.removeAttr('onclick');
    $allButtons.click(function(){
    itemChanged = false;
    var toDo = $(this).attr('data-submitval');
    eval(toDo);
    $('a').click(function(event){
    if ($(this).children('img[id="P&APP_PAGE_ID._DATE_PICKER_IMG"]').length > 0) {
    event.preventDefault();
    eval($(this).attr('href'));
    window.onbeforeunload = function() {
    if (itemChanged) {
    return 'You have made changes to data on this page. If you navigate away from this page without first saving your data, the changes will be lost.';
    //]]>
    </script>
    Thanks
    Sam
    Edited by: sam on 29-Jan-2013 03:50

    JavaScript doesn't work on any site at all? If particular sites are the issue, or you get specific error messages, please let us know.
    Usually the only two ways to disable JavaScript in Firefox are:
    (1) Options dialog > Content tab<br>
    (2) NoScript add-on (or other security-related add-ons)
    Normally Safe Mode bypasses issues caused by add-on problems or non-default settings, so it's worth considering external issues.
    Does JavaScript work normally in any other browsers you have installed?

  • Java Plugin not working with firefox 3.o.13  and linux.

    this is my ln -s to the plugin at /usr/lib/mozilla/plugins
    libjavaplugin_oji.so -> /usr/local/jdk1.6.0_16/jre/plugin/i386/ns7/libjavaplugin_oji.so
    Any ideas why java is not working?
    Here's the ln -s again:
    #pwd
    #/usr/lib/mozilla/plugins
    # ls -l
    lrwxrwxrwx 1 root root 63 Sep 28 20:41 libjavaplugin_oji.so -> /usr/local/jdk1.6.0_16/jre/plugin/i386/ns7/libjavaplugin_oji.so
    Here are my java stats:
    # java -version
    java version "1.6.0_16"
    Java(TM) SE Runtime Environment (build 1.6.0_16-b01)
    Java HotSpot(TM) Client VM (build 14.2-b01, mixed mode, sharing)
    Firefox 3.0.13:
    Mozilla/5.0 (X11; U; Linux i686;
    Gentoo Linux:
    # uname -a
    Linux tma 2.6.30-gentoo-r5 #10 SMP Sun Sep 20 21:52:19 PDT 2009 i686 Pentium III (Coppermine) GenuineIntel GNU/Linux
    I installed java from a jdk*.sh file and set the class path in /etc/bash/bashrc (not that it matters.
    The appletviewer does work.

    solved: I knew you all knew I could figure this out.
    #cp -R /usr/lib/mozilla/plugin/ /usr/lib/firefox-mozilla/
    asuming this is true:
    tma plugins # pwd
    /usr/lib/mozilla/plugins
    tma plugins # ls -l
    total 4
    lrwxrwxrwx 1 root root 63 Sep 28 20:41 libjavaplugin_oji.so -> /usr/local/jdk1.6.0_16/jre/plugin/i386/ns7/libjavaplugin_oji.so
    tma plugins #

  • Printing an iframe with pdf using javascript is not working in IE8 and above

    I have a problem with printing and Iframe with PDF in IE 8 and above
    Following is my javascript:
    var urlValue="";//Path of the file to be printed
    var div = document.getElementById("printerDiv");
    div.innerHTML = '<iframe src="' + urlValue + '" id="frame" name="frame" style="width:100%;height:100%;"></iframe>';
    frame.focus();
    frame.print();
    This same thing is working fine in other browser but for IE is just not invoking the print dialog.
    Also I tried to get the frame.print(); on load of the frame but even that is not working exactly as that way it print the parent window in output.
    Few things I tried like:
    1) div.innerHTML = '<iframe src="' + urlValue + '"
    onload="this.contentWindow.print();"></iframe>';
    2) frame.contentWindow.focus();
    frame.contentWindow.print();
    3) window.document.getElementsByTagName('iframe')['frame'].onload = (function () {
    frame.focus();
    frame.print();
    I need to get the print of only the content which is in Iframe which I am binding in "printerDiv" by javascript.
    Any perfect/different solution from which I have tried then please post here?
    Thanks.

    PDF documents are hosted in an ActiveX or netscape plugin control which have their own printing functions.
    Start>Adobe Reader>Edit>Preferences - to adjust what functionality the PDF document viewer addon displays (menus etc).
    Tools>Manage Addons>Show all addons
    make sure you have both the x86 and x64 versions of your PDF reader Active X control installed and enabled. I would recommend also that you update to the latest version of the vendors' (Adobe?) plugin.
    Possibly you have disabled scripting of ActiveX controls in the IE security zone that your parent page maps to. Also there is an IE security zone feature that prevents navigation to a domain in a zone of lower integrity.
    Tools>Internet Options>Security tab, click "Reset all zones to default".
    when asking developer related questions it is helpful if you can include a link to your website.
    Rob^_^

  • Image cache not working with Firefox and apex

    Hi,
    I'd like to cache all my images to save page rendering time and bandwidth because my images are all static and never change.
    I use the John Scott's caching technique Link: [http://jes.blogs.shellprompt.net/2007/05/18/apex-delivering-pages-in-3-seconds-or-less/], in a few words this technique consists of adding a header line "Expires: date in the future" in the http response.
    It works very well in IE, the images are cached and the same image can be accessed several times (within the same session or in different sessions) without issuing an http request to the server each time.
    with Firefox it does not work, the same image is asked again and again to the server (i'm using FF 3.5 and APEX 3.2).
    - Is it a date format problem? no, because when i type about:cache in FF, i can find my image in the cache with an expire date in the future.
    The weird thing here is that the counter is incremented each time u request the image, so FF knows it is in the cache and even if the expire date is in the future, FF asks it again to the server.
    - Is it a FF bug? If u read the http specs or if u google a little, u can come to the conclusion that FF does not follow the standards,
    but... images.google.com for example manages to get its images cached with FF.
    They use an http response header "cache-control: public, max-age=604800".
    I tried the same and all kinds of combinations but without success.
    When i compare my image with the one from google in the FF cache, they both have the same attributes.
    - It's not an apex issue neither because it works with IE, most probably an incompatibility between apex and FF?
    Maybe the use of cookie? or the http request (not the response) containing "cache-control: max-age=0"?
    I've found so far 2 half solutions:
    1) use ETag and modified date, see the Tyler Muth's note Link: [http://tylermuth.wordpress.com/2008/02/04/image-caching-in-plsql-applications/].
    with this technique FF continues to send request each time but the answer is shorter because it's just a "304 not modified" instead of "200 OK" (200 response is bigger as it contains the image).
    it's better than nothing but you still have 1 request + 1 response for nothing.
    Another problem is that you need SYS access to implement this, which is not possible on an hosted server. (note that for images from the file system it is already foreseen by apex 3.1, Tyler's note is for images from the db)
    2) if you preload the image (using myimage=new Image();myimage.src='...';), then there is max 1 request per browser session.
    There are 2 minor issues here:
    - no caching across sessions
    - if u don't want to preload all the images (example a page with lots of thumbnails, when user clicks it show a bigger image, in that case the thumbnails can be preloaded but overkill for the big images), then you need to load the image, wait until the image has loaded before displaying it, it does not slow down the execution, but requires some extra JS.
    I'm not asking anyone to investigate it, i can live with the 2 workarounds,
    but just in case someone encountered the same problem and already fixed it.
    Let me know if u managed to use the John Scott's technique with Firefox. (U can use Firebug to see the http traffic)
    Thx
    Tim

    Hi Anshul, hope these help. Let me know if you need to see anything else.
    Best,
    Menu Settings:
    Tab Hyperlink:
    Label Text with with hyper link option not available (works as a hyperlink in chrome and IE though):
    Thanks for the help in advance!

  • Why would the Java Plugin not work in Firefox 5 on Mac SnowLeopard? I have the most recent version but am unable to use any Java features on Firefox 5. Firefox 3.6 works with the same Java but 5 will not.

    Most recent version of Java and firefox. Java Applications will start to load but end up in an infinite loading loop.

    Well, it's what I did to get my Java working in Firefox 4. I installed both binaries into my Library/Internet Plug-ins folder. The version was newer that what was previously installed (newer version is 0.9.7.5). It solved the Java problems I was having. My inital problem was that Java would not initiate and no applets would run in Firefox version 4 which I just installed a few days ago.
    I know the readme.txt. says it is not compatible with version 4, but the release date on 0.9.7.5 is after the release date of Firefox 4 and so that was I tried it. I figure there was nothing to lose as at worst it woud update my two plug-in files. Nothing was going to be changed otherwise. If you try it, it might work.

  • 3rd party plugins not working after archive and install

    hi,
    i have a few 3rd party plugins in my logic pro, such as all the native instruments, waves diamond, ik multimedia plugins, atmosphere and a few more,
    i was getting an error on my g5 when i tried to run diskwarrior from the disk. it was the kernal panic message, it said i had to restart my mac, therefore i couldnt run diskwarrior from disk.
    i did a bit of research and a few people suggested doing a archive install, so i did.
    well what do you know, i had to re-install logic 8 again. other programmes such as transcribe, itunes idvd imovie etc were ok.
    but logic didnt load up, o i had to re-install logic again,
    also before i did that i checked to see if my 3rd party plugin were working in standalone, so i check all the native instruments and they seemed to work ok, T-racks deluxe works fine, so i thought they should all load up in logic.
    once logic was installed again and had to get all the updates all my 3rd party plugins did not show up on my AU validation.
    is there a way to get logic to see my 3rd party plugins or do i have to re-install all of them again.
    cheers for the help
    lib

    Then check if the NI AU components are actually where they should be:
    HD/Library/Audio/Plug-Ins/Components
    If not copy them over from your "previous systems" folder which was created on your HD during the archive and install process.

  • Quicktime plugin not working in Firefox

    I recently upgraded to Mac Lion and now find that I can not play .mp3 files embedded in web pages if viewed in Firefox.  The same pages play okay in the same version of Firefox if running on SL10.6.8, or in Safari or Chrome on the Lion machine.  I have checked the plugins list in Firefox and it shows that Quicktime is installed and enabled.  I was also able to stream and watch videos (with audio) from the Apple web site.  I just can't get embedded .mp3 files to play on a web play in Firefox.  Any ideas?
    llk

    I have scoured the internet looking for a way to play MP3 files right in the browser window and have come up with nothing. Firefox does not let me set MP3 files to play with the QuickTime Plugin but instead I can only have them play in iTunes or QuickTime after a download. Pretty much same with Chrome and Safari. Neither will let me just play the MP3 right in the browser. Please help!

  • Anchor links in HTML newsletters not working in iOS8 and above

    I used to receive daily HTML email newsletters with links anchor down to detailed content. The links were working fine in all the previous versions. After upgrading to iOS 8, the internal hyperlinks (anchor links - both named as well as id) are not working. It takes me to nowhere and shows an error message id. This seems to be very specific with iOS 8 and there is no HTML code support to overcome this issue.
    Can Apple fix this issue at the earliest as it is very difficult to scroll up and down every time to read the contents of the email newletters?

    I used to receive daily HTML email newsletters with links anchor down to detailed content. The links were working fine in all the previous versions. After upgrading to iOS 8, the internal hyperlinks (anchor links - both named as well as id) are not working. It takes me to nowhere and shows an error message id. This seems to be very specific with iOS 8 and there is no HTML code support to overcome this issue.
    Can Apple fix this issue at the earliest as it is very difficult to scroll up and down every time to read the contents of the email newletters?

  • Java Not Working On Firefox and 10.7.2

    One Java s installed in Safari, Firefox 7 only displays an empty box in OS X 10.7.2. This seems to apply to all versions of Firefox post 3.6.(23). Has anyone else seen this problem? I there a solution?

    I have the same problem with Camino (Mozilla's MAC browser).  Though JAVA is showing in utilities and enabled it's only working for Safari.  Trouble is that my work site does not like Safari, never has so had to use Camino there instead.
    Is JAVA a problem with other browsers like Opera, Chrome & Firefox?  Iv never had problems in the past with Camino because it's specifically build for MAC.  But with the upgrade to Lion ... it's stopped working on the employer site due to JAVA.

  • Plugin not working with firefox 4.0.1 showing an compatibilty error however it is getting installed in Firefox 3.6 successfully. Dont know what is going wrong please help on urgent basis

    Hi,
    Plugin can be loaded from the link below. This is getting installed on the firefox 3 version but each time I install it on Firefox 4 version it shows the compatibilty error. I have disabled the compatibilty check for firefox in default:config setting but still getting the same error. Please resolve asap.
    Thanks in advance

    That extension has a maxVersion of 3.*.* (3.0.* in update.rdf) and can't be installed in Firefox 4.
    <pre><nowiki><em:minVersion>1.5</em:minVersion>
    <em:maxVersion>3.*.*</em:maxVersion></nowiki></pre>

  • Why do certain functions of "click on" not work with Firefox and Ebay and my mailboxes?

    When going to my mail (especially Yahoo mail) I cannot click on the boxes that allow me to delete or whatever. In addition, I can't hardly use Firefox at all with Ebay and other sites because of a similar problem. For instance, the cursor won't even change to a 'hand' on "Sign In" on Ebay nor will it allow me to change the page number if I have multiple items for sale or buying. I've had to switch all of my bill paying sites to IE for this same reason. Got any ideas? I'm currently using Firefox 17.0.1.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: 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

  • Links are not working with Firefox and some other browsers

    Hello,
    On my site (iWeb08) I have some pictures of pieces of text as a link to another page of website.. but with some browsers the links doesn't work.
    Also de links are very difficult to activate on the site.. What I mean is when you want to click the link.. you have to search with the cursor in stead of stand on the word and click to activate..
    (hope that you understand what I mean, but my English is a bit difficult in English for me...)
    Regards,
    Jose

    Jose,
    It might be good to give us the link to your site so we can see for ourselves what is happening.
    Phil

  • Tab navigation is not working on chrome and firefox

    Hi Every One,
    we are using jdev 11.1.1.6.
    Navigation across tabs on click of tab on key board is not working on firefox and chrome.
    Please help me with your inputs.
    Thanks in advance.
    Regards,
    Lavanya.

    Hi,
    can you be more explicit in explaining what you want to achieve and what is not working? You mean that the tab menus are not getting in focus using the tab key? Have you tried setting clientComponent=true on them?
    Frank

  • Videos are not working in Firefox

    Hey everyone,
    This seems to be a common problem, but videos are not working on Firefox, and not just for YouTube. I have updated Adobe Shockwave and Flash, re-installed Firefox, deleted/created a Firefox profile, started up Firefox in Safe Mode, turned off HTML5, checked if any of my plug-ins are disabled, and none of those have helped.
    When I get on YouTube and click a video, the video itself doesn't even load. On other sites, in the box where the video should be playing, it says "No video with supported format and MIME content can be found." This kind of confuses me because I have updated the Adobe Flash.
    Thoughts? Anything would be appreciated at this point.
    -- Brynn

    Hello,
    Some problems with Flash video playback can be resolved by disabling hardware acceleration in your Flash Player settings. (See [[Flash Plugin - Keep it up to date and troubleshoot problems|this article]] for more information on using the Flash plugin in Firefox).
    To disable hardware acceleration in Flash Player:
    #Go to this [http://helpx.adobe.com/flash-player/kb/video-playback-issues.html#main_Solve_video_playback_issues Adobe Flash Player Help page].
    #Right-click on the Flash Player logo on that page.
    #Click on '''Settings''' in the context menu. The Adobe Flash Player Settings screen will open.
    # Click on the icon at the bottom-left of the Adobe Flash Player Settings window to open the Display panel. <br/> <br/>[[Image:fpSettings1.PNG]] <br/>
    # Remove the check mark from '''Enable hardware acceleration'''.
    # Click '''Close''' to close the Adobe Flash Player Settings Window.
    # Restart Firefox.
    This [http://www.macromedia.com/support/documentation/en/flashplayer/help/help01.html Flash Player Help - Display Settings page] has more information on Flash Player hardware acceleration, if you're interested.
    Does this solve the problem? Let us know.

Maybe you are looking for

  • Can I upgrade storage for Macbook air 11" (early 2015)?

    Can I upgrade storage for Macbook air 11" (early 2015)?

  • In Preview Permission problem

    I've been using Preview in the past with no problem. I am the only user on this computer. When I double click a picture and it open in Preview, I make changes and try to save--It says I don't have permission to do this!! First I repaired permissions

  • Admin rights to install AIR apps on Windows?

    Hi I have the  AIR framework 1.5 already installed on a Windows XP PC. After this, are admin/power-user rights required to install AIR apps on the same machine to the "My Documents" folder? I would assume NO. Pls clarify. If admin rights are required

  • Help with re install of OSX  Lion

    I  want to re install a clean copy of Osx Lion, as I have corrupted the sytem permissons.  Does a clean install delete other software that I have installed on my laptop?

  • Synced my Blackberry and my emails went bye bye

    I was syncing some numbers on my new peal when it locked up ( pocket berry) I quit the app and noticed some "temp mail" was trying to come up on my email. I deleted that account and noticed that my other email accounts went away with it. Well that is