How do I fix a jQuery plugin stops working when edgePreload.js script is attached?

I have a jQuery plugin on my site that I really want to use (Quicksand). I built the site in Dreamweaver, and now I want to animate the elements in Edge Animate, but I noticed as soon as I did anything, the Quicksand plugin stopped working! I troubleshooted for a while and discovered that it was simply the attachment of the edgePreload.js file that kept it from working... how do I fix this?
I have uploaded 2 pages to show what I'm talking about:
http://www.ruesterprod.com/edgeTest_a/ - my quicksand plugin works fine here (Click the 2 grey buttons to see what the Quicksand plugin is doing) I commented out only the part where edgePreload.js is attached...
http://www.ruesterprod.com/edgeTest_b/ - This one I left the edgePreload.js script attached and now the 2 grey buttons don't do anything...
Please help!
Thanks all!

{B635abd67-4fe9-1b23-4f01-e679fa7484c1} is an extension that is related to Yahoo. You didn't bother to provide your "Troubleshooting Information" so I can't guess the name of that extension. You need to figure out which extension that is, and disable it.
http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

Similar Messages

  • How do i fix hp games they stop working after about 50 secs

    how do i fix my hp games so they won't go off after 40 seconds of playing

    Hi,
    You might be having a heat issue.
    Try this procedure:
    Unplug the PC and open it up. Clean out all the dust. Carefully remove and replace all the cables going to the motherboard one at a time. Do the same for the memory dimms and the video and sound cards if you have any.  You might want to buy a can of compressed air to blow the dust out of the CPU heat sink.  Plug your PC back in and give it a go.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • JQuery function stops working when trying to submit large amount of parameters

    Hi,
    Run CF9 on Windows 2008 R2 Server.
    I have a cfm page with multiple dropdowns (some are cfselect) and dynamically generated lists of checkboxes interdependent on each other. I am using JQuery to submit data to cfc functions and to display data.
    It was all working fine until we added new company with large number of records. This translated into large URL query string with a lot of parameters submitted for processing. That's when we started to have problems. I noticed when trying to directly submitting URL, if the total number of characters in URL is more than 2114 I get an error status code 302 Redirect and nothing is displayed. 
    I tried to play with postParametersLimit and postSizeLimit increasing to 1000.0 in neo-runtime.xml and restarting server but, this did not help.
    Below is jquery function:
    function populateBills(){
       var plID;
       if ($('#planenrolldate_id').val() == undefined)
        plID = $('input[name=planenrolldate_id]').val();
       else
        plID = $('#planenrolldate_id').val();
       var sID = $('#sponsor_id').val();
       var pID = $('#plan_id').val();
       var fromMonth = $('#from_month').val();
       var fromYear = $('#from_year').val();
       var toMonth = $('#to_month').val();
       var toYear = $('#to_year').val();
       $.ajax({
        type:"POST",
        url:"../components/billing/custompremstatus.cfc?method=GetBillsArr&planenrolldate_id=" + plID + "&sponsorid=" + sID + "&fM=" + fromMonth + "&fY=" + fromYear + "&tM=" + toMonth + "&tY=" + toYear,
        dataType: "json",         
        success:
         function(data){                 
          $.each(data, function(index, item) {
           addBillsCheckboxes(item.bill_id,item.bill_period);
        }, //end the error function
        error:
         function(){
          alert("An error has occurred while fetching bills");
         } //end the error function
       }); // end ajax call      
      } // end of function

    That's exactly from the console after I submit:
    fM  9
    fY  2014
    method  GetBillsArr
    planenrolldate_id[] 564
    planenrolldate_id[] 561
    sponsor_id  59
    tM  9
    tY  2014
    When I check just one planenrolldate_id then it looks like this
    fM  9
    fY  2014
    method  GetBillsArr
    planenrolldate_id[] 561
    sponsor_id  59
    tM  9
    tY  2014
    This it cfc part:
    <cffunction name="GetBillsArr" access="remote" returnFormat="json" returnType="array">
            <cfargument name="sponsor_id" type="any" required="true">
            <cfargument name="planenrolldate_id" type="any" required="true">
            <cfargument name="fM" type="numeric" required="true">
            <cfargument name="fY" type="numeric" required="true">
            <cfargument name="tM" type="numeric" required="true">
            <cfargument name="tY" type="numeric" required="true">
            <cfset var result=ArrayNew(1)>
            <cfset var i = 0>
             <cfif ARGUMENTS.planenrolldate_id EQ "" OR ARGUMENTS.sponsor_id EQ "">
                <cfset LstBills = QueryNew("bill_id, bill_period", "Integer, Varchar")>
            <cfelse>
                <cfquery name="LstBills" ...>
                    SELECT bill_id,
                        (Convert(varchar(10),billing_start_date,103) + ' - ' + Convert(varchar(10),billing_end_date,103)) + ' [' + Convert(varchar(6),plan_id) + ']' AS bill_period
                        FROM ...
                </cfquery>           
            </cfif>
            <cfloop query="LstBills">
                <cfset returnStruct = StructNew()>
                <cfset returnStruct["bill_id"]= bill_id>
                 <cfset returnStruct["bill_period"] = bill_period>
                 <cfset ArrayAppend(result,returnStruct) />
            </cfloop>
            <cfreturn result>
    </cffunction>

  • Why do my Jquery functions stop working when adding an Edge animation to my page?

    I've used Edge now for a few months on several projects and it's very useful for a designer like myself to create html5 animations as quick as Flash, but I'm noticing that everytime you add edge to a page, the jqeury it uses overwrites any others on the page and breaks other jquery based widgets. Why is this?
    I've had a coder friend I work with have a look at the problem and his only solution was to put the edge animation inside an iframe, which is far from ideal.
    Is there a way to use Edge and still use other jquery widgets on the page? (Basically I'm using a Nivo Slider jquery fading image box further down the page, which is breaking).
    Thanks

    martcol wrote:
    > I really do not thing that I have done anything at all
    to the
    > page and can garantee no changes to the PHP script.
    >
    > It's hosted on some free space so there's no support
    there. What might be the
    > problem?
    With free hosting, you get what you pay for - nothing. It's
    possible
    that the hosting company has changed the PHP configuration
    and turned
    off the display of errors. Most companies do so nowadays,
    because the
    display of errors is considered a security risk.
    You can try adding this to the top of the PHP script:
    <?php ini_set('display_errors', '1'); ?>
    If that displays any error messages, post the details of the
    error
    message here, and someone should be able to help you.
    However, without giving more details of the script and setup,
    your
    question is rather like saying "My car won't start. What's
    wrong?" It
    could be anything. To get decent help online, you need to
    describe the
    problem in more detail.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS4",
    "PHP Solutions" & "PHP Object-Oriented Solutions"
    http://foundationphp.com/

  • Iphoto stopped working when trying to export to facebook.  iphoto is froze open with flip down for exporting.  Neither will respond.  Any ideas on how to fix this?

    iphoto stopped working when trying to export pictures to facebook - iphoto page and export flip down froze open -  cannot do anything with them - any idea what's wrong or what I can do to fix this?

    Force Quit iPhoto (Use Force Quit under the Apple Symbol in the upper left of this page). If you continue to have problems please re-post in the iPhoto's forum, it's located at:
    https://discussions.apple.com/community/ilife/iphoto

  • How do I figure out why webcam stopped working

    How can i figure out why webcam stopped working.  Sometimes rebooting helped but now it does not go on when software comes up

    Hi,
    Please use this to fix
      http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c02452221&lc=en&cc=us&dlc=en&product=3761191    
    Links for XP & Vista are in there too.
    Good luck.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • CUEAC blf plugin stopped working

    Hello All,
    I have a CUEAC server version 8.6.2.11. The BLF plugin stopped working after some months. I mean that from the Attendant console Operators are no more able to see status for the phones registered to the cluster. They see no icons at all.
    On the BLF info page I get: Unable to connect to the server and everything is not connected.
    See attached screenshots.
    Any help is very appreciated.
    lorenz

    Hi Lorenz,
    Could be this bug;
    CSCuc68960 - BLF intermittently does not display line status for any device.
    Description
    Symptom:
    This issue happens  intermittently to customers, where it appears that while all operators  are logged out of the attendant consoles the BLF service stops running.  After operators log back into the client, they are unable to see any  line status updates.
    Conditions:
    NA
    Workaround:
    Restart the BLF service.
    Details
    First Found in:                          (1)
    8.6(2)
    Status:
    Fixed
    Last Modified:
    Mar 21,2013
    Fixed in:
    Release Pending
    Product:
    Cisco Unified Attendant Consoles
    Platform:
    Dependent
    Severity:
    3 - moderate
    Cheers!
    Rob
    "Hours are like diamonds, don't let them waste
    Time waits for no one, no favors has he" 
    - Stones

  • I installed elements 12 on a Win 8.1 computer and moved all my photos from my old XP machine.  I updated to elements 12.1.  Now, many/most of my photos will not open because I do not have "permission" to open the files.  How do I fix this so I can work wi

    I installed elements 12 on a Win 8.1 computer and moved all my photos from my old XP machine.  I updated to elements 12.1.  Now, many/most of my photos will not open because I do not have "permission" to open the files.  How do I fix this so I can work with MY photos?

    Yes, the Old Master file has a folder for each year where I find all photos from that specific year. I am attaching a screen shot of the file.
    In the meantime i have managed to download all photos (it did not download any video files though in mpg, avi, 3gp, m4v,mp4 and mov format) to a new iphoto library. Unfortunately the photos are quite mixed and often doubled up. I ma considering to purchase iphoto library which checks all duplicates in iphoto. this will save me a lot of time. What do you think?

  • All of my purchased apps (games) and apps such as Weight Watchers, Facebook, WeatherBug, Sports and Pinterest, Notes, Nook, etc.  are all locked up.  They simply flash, then nothing!  How can I fix this to make them work again.

    First Issue:   All of my purchased apps (games) and apps such as Weight Watchers, Facebook, WeatherBug, Sports and Pinterest, Notes, Nook, etc.  are all locked up.  They simply flash, then nothing!  How can I fix this to make them work again?  If I have to delete the purchased apps, will they still be in iTunes, or will I have to re-purchase them? 
    Second Issue:   When I synced to my desktop (Windows XP)  All my photos loaded onto my iPad2.  I don't really want all 3000 + pics on my ipad!!  How do I get them off?  Next time I synced, they loaded again!  Now I have so many duplicates!  How do I get rid of the photos and prevent this from happening again?

    If none of your third-party apps are working, but the Apple built-in ones are ok, then try downloading any free app from the store (as that appears to reset something) and then re-try them - the free app can then be deleted. In terms of re-downloading apps then you can do so as long as they are still available in the store, and you use the same iTunes account as you originally used to buy them, then you should be able to re-download them for free : http://support.apple.com/kb/HT2519
    For synced photos, then with the iPad connected to and selected on the left-hand side of your computer's iTunes, then on the Photos tab on the right-hand side you can control which photos are synced to the iPad : http://support.apple.com/kb/HT4236 . If you don't want any photos to be synced then try selecting just an empty folder.

  • How do I fix the 4900 error I get when trying to burn a cd in itunes?

    how do I fix the 4900 error I get when trying to burn a cd in itunes?

    We are having the same issue.
    Windows 7 x64
    Microsoft Office 2013 (Word)
    Adobe Reader XI (11.0.0)
    Whenever someone tries to embed a PDF file into a Word document, the following error occurs:
    The program used to create this object is AcroExch. That program is either not installed on your computer or it is not responding. To edit this object, install AcroExch or ensure that any dialog boxes in AcroExch are closed.
    I have looked at alot of articles online that say to 'Disable' Protected Mode.  This does not resolve the issue.  This option is not set by default in our environment.
    Do we have any confirmation or information from Adobe on this issue? 

  • I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication ra

    I needed to install a previously purchased CS6 versus on new computer. To do this, I had to download a version from CC. I will not be using CC. How do I activate Photoshop under my license so that it does not stop working when I am out of communication range a month from now?

    The CC version will not activate with your perpetual CS6 license. Download the version from here:
    http://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html
    Your number should work with this version.

  • I was in Aussie last month and dropped my iPod Touch (4th Gen) on the road. The screen was cracked on the top left-hand corner. The screen got fixed but the wireless stopped working. Can I still get it fixed under my warranty? (bought last July)

    I was in Aussie last month and dropped my iPod Touch (4th Gen) on the road. The screen was cracked on the top left-hand corner (where the wireless area is). The screen got fixed but the wireless stopped working. So I am wireless-less... I bought it last July and its still under warranty, but can I still claim a repair on it?

    No because it was physical damage

  • Reader stops working when newest GTK2.0 installed - bug report and proposed fix

    Adobe Reader 7.0.9 (Linux i386) stopped working when I installed a batch of updates on Xubuntu Feisty Fawn (7.04). The updates included GTK 2.0, version 2.10.11. The symptom was that upon startup, Reader ended up in a seemingly infinite loop, printing out "expr: syntax error" (when started from terminal emulator). A few debug "echo"'s revealed that the loop concerned function get_gtk_file_ver().
    The bug itself is on line 418. The original line is as follows:
    echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'
    - note that there is no '*' in the middle number-matching regexp, so the full expression matches only strings in which the "middle" group is 100, 200, ..., 900.
    At this point in the execution, $mfile contains the name of the gtk library .so, in this case, libgtk-x11-2.0.so.0.1000.11. In prior versions (e.g. 2.8.20, which is the current version in Ubuntu Dapper Drake LTS), the minor version had only one digit, and the regexp matched. When the minor version got incremented to two digits, the regexp no longer match because of the missing '*'! As an additional bonus, somehow this leads to the infinite loop (which is *not* good).
    A working fix is to add the missing '*' into the regexp. I'd say that a lot of Linux users will be tripping on this issue soon, at least those who keep current on security updates.
    I found no sensible way to contact the developers, i.e. a way that wouldn't have to pass a gazillion of customer-service and tech support people, who are most likely just as unaware of the issue as the users...
    I hope this issue will be fixed ASAP - after all, it's only one added character, and that'll save a lot of users a lot of hassle.
    (and btw, to have the intended effect, the dots in the sed expression should all be escaped with a backslash - now e.g. "libgtk-x11-2.0.sog0.1000.11" matches the sed regexp as well as "libgtk-x11-2.0.so.0.1000.11", but this probably isn't too critical...)

    The solutions provided here work, but by accident. The script compares 2104 (2.10.4) to 240 (2.4.0) and sees that it's greater. Adobe will have problems in future releases if the minimum GTK release is, say, 2.10.4 and the user has 2.4.0.
    I've crafted a more elegant solution, shown here in "patch" format. I think the reformatting and tab elimination done by HTML will preclude you from pasting this into a file and running "patch", but it's pretty easy to read and is short...
    --- /usr/local/Adobe/Acrobat7.0/bin/acroread~ 2007-01-05 14:56:39.000000000 -0500
    +++ /usr/local/Adobe/Acrobat7.0/bin/acroread 2007-08-03 09:33:08.000000000 -0400
    @@ -409,13 +409,13 @@ get_gtk_file_ver()
    fi
    mfile=`basename $ifile`
    - echo $mfile | grep -q "libgtk-x11-\([0-9]*\).0.so.0.\([0-9]*\).\([0-9]*\)" 2>/dev/null
    + echo $mfile | grep -q "libgtk-x11-\([0-9]*\)\.0\.so\.0\.\([0-9]*\)\.\([0-9]*\)" 2>/dev/null
    if [ $? -ne 0 ]; then
    return 1
    fi
    - echo $mfile| sed 's/libgtk-x11-\([0-9]*\).0.so.0.\([0-9]\)00.\([0-9]*\)\|\(.*\)/\1\2\3/g'
    + echo $mfile| sed 's/libgtk-x11-\([0-9]*\)\.0\.so\.0\.\([0-9]*\)00\.\([0-9]*\)/\1.\2.\3/'
    return 0
    fi
    @@ -455,16 +455,25 @@ check_gtk_ver_and_set_lib_path()
    continue
    fi
    - len_version=`expr length $version`
    - base_version=`expr substr "${base_version}0000000000" 1 $len_version`
    - len_base_version=`expr length $base_version`
    - while [ $len_version -gt $len_base_version ]; do
    - base_version=`expr substr "${base_version}0000000000" 1 $len_version`
    - len_base_version=`expr length $base_version`
    + ok=true
    +
    + while [ -n "$base_version" ]
    + do
    + base_subversion=`echo $base_version | sed 's/\..*$//'`
    + subversion=`echo $version | sed 's/\..*$//'`
    + if [ $subversion -lt $base_subversion ]
    + then
    + ok=
    + break
    + elif [ $subversion -gt $base_subversion ]
    + then
    + break
    + fi
    + base_version=`echo $base_version | sed 's/^[0-9]*\.*//'`
    + version=`echo $version | sed 's/^[0-9]*\.*//'`
    done
    - if [ $version -ge $base_version ]; then
    + if [ -n "$ok" ]; then
    export LD_LIBRARY_PATH="$idir":"$LD_LIBRARY_PATH"
    IFS="$OLD_IFS"
    OLD_IFS=""
    @@ -640,7 +649,7 @@ fi
    # Check the version of gtk and update the LD_LIBRARY_PATH if required.
    if [ "`uname -s`" = "Linux" ]; then
    - MIN_GTK_VERSION="240"
    + MIN_GTK_VERSION="2.4.0"
    check_gtk_ver_and_set_lib_path "$MIN_GTK_VERSION" ### returns 0 if found gtk >= 2.4
    fi

  • When I am listening to music whether through pandora  or the music ap it stops working when I bring up safari. It worked before I updated, is there a solution in fixing this?

    When I am listening to music whether through pandora  or the music ap it stops working when I bring up safari. It worked before I updated, is there a solution in fixing this?

    Reboot your iPad and see if that helps.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Why does my flash player plugins stop working continueous

    why does my flash player plugins stop working continueous when playing Zynga games, like Farmville etc?

    What operating system, browser and Flash Player version are you using?  Do you have steps to reproduce this and an example URL?

Maybe you are looking for

  • Problem in  Outbound IDOC from SAP R/3

    Hi, I am working on to send an IDOC from SAP R/3 to XI. I configured all necessary things as follows: 1. Created for XI in sender system -- RFC dest, PORT and a partner profile with an outbound parameters and reciever port as XI port. 2. created for

  • Driver program for (request for quotation) /SMB40/MMRFQ_A smart form

    Dear friends, I found a standard smartform for request for quotation ie /SMB40/MMRFQ_A..but i am unable to find a driver program for this standard form.. Also checked in TNAPR table and nace t code for driver program. pls tell me the driver prog for

  • Dark Side Of The Moon RUINED in iTunes Plus

    I downloaded the classic album Dark Side Of The Moon by Pink Floyd last night and immediately began listening to one of my favourite albums. However, on track 5 (The Great Gig In The Sky) there are a couple of little cackles a couple of minutes in, b

  • Moving Custom fields to the main screen in CUP

    Hi Gurus, I am wondering if there is a way to move a custom field to the main screen like under general information instead of it being in the more section. We have a custom field which would be mandatory, So it would be nice to have it on the main s

  • Safari does not run at Windows Server 2003

    Any page I try to open at Safari, it just crashes (I mean, just closes) without any technical information. The most intersting fact is that when I go to preferences, just in the appearance tab make Safari close. And the most important fact is that I