JQuery ScrollTo() does not work

ScrollTo() JQuery Plugin will not work on the BlackBerry PlayBook. See http://flesler.blogspot.com/2008/02/jqueryserialscroll.html for more information about the plugin.

It works fine in Chrome/FF and IE, but the PlayBook simply ignores. His coming to a point where I prefer one to create an accessible web application from PlayBook/iPad/Xoom rather than trying to run workarounds when widely used JQuery plugins are not supported.

Simulator: 0.9.4

SDK WebWorks: 1.0.0.13

JQuery version: 1.5 (also tried 1.3.2)

Here is the code:

scrollTo works very well for me...

have you tried to create a link and what actually scroll on a click event to see if it works?

Also in your example, I don't see why something would scroll because technically the entire list would fit in the display window, unless you just give us a basic example. Your script should look like this

$(document).ready(function() {
   $('div#contentLeft ul').scrollTo( 'li.playing', 800);
});

Tags: BlackBerry Developers

Similar Questions

  • jQuery code does not work in phonegap

    Someone gave me a code https://jsfiddle.net/adeneo/2uod274d/ jsfiddle

    It works well in jsfiddle, but when I put the code in my Xcode and amended to incorporate my code and run it in the Simulator, the code does not work at all (i.e., no data is stored in the local storage)

    I am building an app for iOS with phonegap. JS:

    <script type="text/javascript" src="cordova.js"></script>
      
    <script type="text/javascript" src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
      
    <script type="text/javascript" src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"></script>

      
    <script type="text/javascript">
      document.addEventListener("deviceready",onDeviceReady,false);

      function onDeviceReady() {

      document.getElementById("btnSave").addEventListener("click",saveData,false);
      document.getElementById("btnShow").addEventListener("click",showData,false);
    }

      function saveData(){
      var data = window.localStorage.getItem("date");

      var dates = data ? JSON.parse(data) : [];

      dates.push( new Date() );

      window.localStorage.setItem("date", JSON.stringify(dates));

      alert("Your data is stored");
      }

      function showData() {
      var data = JSON.parse(window.localStorage.getItem("date"));
      console.log(data);
      $('#res').html(JSON.stringify(data));
      $(this).html('Update result');
      }

    < /script >

    HTML:

    <button id="btnSave"> Save Data </button>

      
    <button id="btnShow"> Show Data </button>

    I don't know what is happening because the code works well in jsfiddle, but for some reason any just does not work in my phonegap.

    My version of phonegap 5.3.6 cordova version 5.3.3

    Post edited by: Fang Kerry, I added my complete code is easier to see the problem (if any)

    jQuery has nothing to do with this, as far as I can tell (so not sure why it is in your title). The problem is that the result of JSON.parse (data) is not an array, what you think it is, it's a chain. The chain respond well to 'push '. I get that when you use this code in jsfiddle he is somehow coming out as a table, but I think it must be because of something done jsfiddle. When I do the same commands in the console of my browser, I get a string, not a table, so your problem.

    Instead:

    function deserializeDates() {
        var data = window.localStorage.getItem("date");
        var dates = []; // worst case, we'll return an empty array.
        if (data) {
            try {
                dates = JSON.parse(data);
                 // handle the case that dates is a single item and not an array
                if (!(dates instanceof Array)) {
                    dates = [dates];
                }
            } catch (err) {
                 // the stored dates failed to parse for some reason; you might want to do something about it
                 console.log("Failed to parse " + data);
             }
        }
        return dates;
    }
    
    function serializeDates(dates) {
        window.localStorage.setItem("date", JSON.stringify(dates));
    }
    
    function saveData(){
         var dates = deserializeDates();
        dates.push( new Date() );
         serializeDates(dates);
        alert("Your data is stored");
    }
    
    function showData() {
         var dates = deserializeDates();
        console.log(dates);
        ...
      }
    
  • jQuery dialog does not work

    My application uses jQuery that dialogue should display a message the first time that passes from the user to the screen. He does not appear.

    In page 0:
    Region of dialog boxes HTML
    Point of view before the footer
    Sequence 1010
    Source:
    <div id="alert-dialog" style="display:none">
    <p id="alert-dialog-text"></p>
    </div>
    In page 2:
    Region of Instructions HTML
    Point of view before the footer
    Sequence of 1009
    Source:

    & nbsp;

    Footer area
    <script type="text/javascript">
        firstTime = $v ('P2_FIRST_TIME');
        if (firstTime != "N" || firstTime == null)
           {
       $("#alert-dialog-text").text("Answer each of the following questions completely to the best of your ability. Read all instructions before answering the questions. If you have any questions about completing the form, contact the attorney designated under the Code of Ethics and Financial Disclosure.");
       $("#alert-dialog").dialog('open').dialog("option","title","Instructions").dialog("option", "width", 460 );
            } ;
    </script>
    Elements
    Region: Instructions
    Text P2_FIRST_TIME field

    He worked at the same time. Then I did something (I forget what) for the poster does not temporarily.

    Now, I need to display it.

    Can anyone help? Jari helped me last time, but if Jari is too busy and someone else can help, I would be grateful. (The 1st person who gets it right, I'll give him 'Correct' Points, others I'll give you Points of 'Help')

    APEX 3.2.1.00.12
    DB Oracle 10g Rel 2

    Robert
    http://apexjscss.blogspot.com

    Hello

    Try

    
    

    If JavaScript is executed after all the HTML document is ready

    Kind regards
    Jari

  • [BB10] jQuery click() does not work

    Hello

    I have a big problem with jQuery on WebWorks:

    
    
    
    
    Description

    and when I click on the item 'option hand' in the emulator Ripple , div "moreTrans" did not hide...

    Of course jQuery is added to the application properly, because code:

    
    

    hide the div to 'moreTrans' to start...

    Thanks for help

    I put JavaScript in the file and now everything works fine.

    But thanks for the help

  • calendar for the week of jQuery does not work in the new version of firefox v42.0

    Hello
    Thanks for your reply.
    IAM develop on the issue that iam facing knowledge, events on the calendar for the week of jquery does not work in firefox version iam 42.0 faced to the problem that iam unable to change back or delete nominations that are displayed.
    For example if try clicking on one of the appointment generally a popup comes to change or to restore or remove the appointment but iam not getting that. But this feature does not work in lower versions of firefox (version 32.0 for example). Please check the jquery week calendar demo following URL looks like this:
    http://robmonie.github.IO/jQuery-week-calendar/full_demo/weekcalendar_full_demo.html

    I've just rescheduled lunch 12:00-12:15, so it seems to work on 42 Firefox on Windows.

    What is the latest version, where it has worked for you?

    Have you tested Mode Firefox safe to rule out the possibility of an extension conflict? See: Firefox in Safe Mode troubleshooting questions.

  • jQuery Mobile app does not work on OS5 telephone, but works in Simulator

    Hello

    I'm trying to run a simple jQuery Mobile (beta2) app on my phone and its does not work.

    Had been a working app and it worked on the Simulator, but didn't have a screen on the phone Curve8900.

    Then I created a simple jQuery Mobile app that displays a header, content (with listview) and the foot.

    When I insert in the Simulator, it looks fine, but when I charge the phone it loads and displays a white screen with a small gray square at the top left of the screen... (perhaps 30 x 30 pixels or less)

    (the rest of the screen is green, because I put the bottom in the config.xml file to green)

    I've specified:

    
    

    and also I tried using:

            addEventListener('load', doLoad, false);
    
            function doLoad() {
                document.body.style.height = screen.height + 'px';
                alert('initPage 3');
            }
    

    but makes no difference.

    (Before I added jQuery to app it worked fine)-very tedious debug because I need to sign the code every time I have test and restart the phone after the installation

    Any help appreciated.

    Maybe someone has a skeleton jQueryMobile app that works on OS5?

    Hi Heiko,

    According to this example JQuery 1.5.2 seems to work on 5.0. Do you need a feature of 1.6.2 otherwise maybe try this library instead.

  • jQuery does not work properly

    Here's my situation:

    (1) I have an html region with the source:
    <div id="Report"></div>
    (2) a javascript function: 'Test_Report()': (this feature is indicated by a button).
    function Test_Report()
    {
            var a=new htmldb_Get('Report',&APP_ID.,'APPLICATION_PROCESS=Get_Report',&APP_PAGE_ID.);
            var r=a.get();
    }
    (3) an application ON-DEMAND "Get_Report" process: (it returns a table with 3 columns: "emp_no", "empname" and "employment"). Each row in this table has an id like this: "Row_1", "Row_2', 'Row_3 ',...
    DECLARE
     v_rowid number(6);
     v_empno number(6);
     v_ename varchar2(500);
     v_job varchar2(500);
     CURSOR c_emp IS SELECT empno , ename , job FROM emp;
    BEGIN
     v_rowid := 0;
     OPEN c_emp;
    
     htp.p('<table>');
     LOOP
    
      v_rowid := v_rowid + 1;
      FETCH c_emp INTO v_empno , v_ename , v_job;
      EXIT WHEN c_emp%NOTFOUND;
      htp.p('<tr id="Row_' || v_rowid || '">');
      htp.p('<td>'|| v_empno || '</td><td>' || v_ename || '</td><td>' || v_job || '</td>' );
      htp.p('</tr>');
    
     END LOOP;
     htp.p('</table>');
    
    END;
    (4) I have a jQuery Selector:
    $(function() {
    
    $("#Row_1").click(function() {
    alert('row 1');
    });
    
    });
    The problem is that jQuery selectors do not work for this table. If I run the function: "Test_Report()" on the page load jQuery selectors work until I have refresh the report.

    How could I ' reboot "(or something) jQuery selectors so that they would work when I refresh the report." " (I refresh the report by running the: "Test_Report()" works again.)

    Kind regards
    Cearnau Dan

    APEX 4.0

    Hello

    Your code should not work, when "refresh you" report using Ajax.
    When you create elements to fly try

    $(function() {
     $("#Row_1").live("click",function() {
      alert("row 1");
     });
    });
    

    Kind regards
    Jari

  • Left click does not work in Hotmail or Yahoo

    I was running low disk space and my IT dept says: they removed some "temporary files". Everything they did watered IE so that she came back to v7 V8. They Redid the upgrade of IE and installed a bunch of updates to MS and updated Java, but I'm still having a problem in FF. Most of the sites are fine, but when I go to Yahoo or Hotmail email, left click does not work. I tried to uninstall/reinstall FF. I tried to launch FF in safe mode and reinstall some of the plugins I thought that might have effects. I still can't run. I used some of the tools web dev in FF, all I know is some of the errors that are reported on the loading of the page. On Hotmail, one is that a var called 'JQuery' is undefined, among others.

    Clear the cache and cookies from sites that cause problems.

    "Clear the Cache":

    • Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' sites causing problems:

    • Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of the extensions or if hardware acceleration is the cause of the problem (switch to the DEFAULT theme: Firefox/tools > Modules > appearance/themes).

  • My javascript does not work on Firefox

    I wrote a very small javascript. It works perfectly on IE, but it does not work on Firefox. Each javascript, I am writing to you, face the same problem. JavaScript is not disabled in my firefox browser, and I use the latest version (3.6.9). It's one of my scripts.

    < content meta = text/html"; charset = utf-8 "http-equiv ="Content-Type">"
    < title > Untitled Document < /title >
    < script language = "javascript" >

    function namechecker()
    {
    var firstNameLength = txtFirstName.value.length;

    even if (firstNameLength == 0)
    {
    firstNameLength = prompt ("enter your first name","" ");
    txtFirstName.value = firstNameLength;
    }
    }

    < /script >

    Enter your first name:
    < name of entry = "txtFirstName" type = "text" >


    Enter your last name:
    < input name = "txtlastName" onfocus = "namechecker ()" type = "text" > "

    This problem persists for me after updating to 3.6.10. Many web sites, even Google, unusable due to JavaScript errors. The problem could be solved by disabling the cache. I also noticed that some images for some pages do not load until the cache has been cleared, so I suspect that this is not a JavaScript problem but a bug in the way Firefox handles caching. Unfortunately, I can't reproduce this problem systematically.

    This problem occurs on 2 separate machines that are both running Windows 7 Pro 64 bit. Some installed extensions: Firebug (disabled), Xmarks.

    A page that I am wrong with this time is http://cgsmd.isi.edu/dbsnpq. Errors are "$ is not defined", "jQuery is not defined" and some images do not appear, while some arise. When I go to about: cache? device = disk I can located at the URL of the JavaScript file. When I followed links to this cache entry, and I can see that the corresponding cache file does not exist. This is the file:

    C:\Users\Scott\AppData\Local\Mozilla\Firefox\Profiles\jlz39414.default\Cache\83E84132d01

    I did the same thing for some images. Some I can find in everything: put in cache and view them, other are listed, but the data is not - these are those who were not initially. In all: cache he requests these minutes just cached were there probably isn't another 'cleaning' software removes these files.

    Conclusion: there are bugs in the system cache of Firefox that make many common web sites, such as Google, unusable.

  • Rotate the Plugin does not work in Oracle Apex 5

    Hi all

    Now I am developing an application using Oracle Apex 5.

    I have improved my request of Oracle Apex 4.2 to 5.

    I used the plugin called PivotTable. Its works fine in Oracle Apex 4.2, but does not work in Oracle Apex 5.

    I just downloaded the plugin from the link below

    https://code.Google.com/p/PLSQL-utils/downloads/detail?name=region_type_plugin_muledev_pivot_region.SQL

    How to use this plugin in my Oracle Apex 5 application?

    Thank you

    Su.GI

    Su.GI wrote:

    Now I am developing an application using Oracle Apex 5.

    I have improved my request of Oracle Apex 4.2 to 5.

    I used the plugin called PivotTable. Its works fine in Oracle Apex 4.2, but does not work in Oracle Apex 5.

    I just downloaded the plugin from the link below

    https://code.Google.com/p/PLSQL-utils/downloads/detail?name=region_type_plugin_muledev_pivot_region.SQL

    How to use this plugin in my Oracle Apex 5 application?

    Interaction with the rendering plugin 5.0 of APEX generates hundreds of errors in JavaScript (check the browser console) of the jquery.ui.sortable.min.js library included with the plug-in, indicating an incompatibility with versions 5.0 of the APEX of the other libraries.

    The plugin code includes a comment about this library:

      -- note: this file is also found in /i/libraries/jquery-ui/1.8.22/ui/minified/ but is not included by default by Apex
      apex_javascript.add_library (
        p_name      => 'jquery.ui.sortable.min',
        p_directory => p_plugin.file_prefix);
    

    APEX 5.0 is a newer version of the library of /i/libraries/jquery-ui/1.10.4/ui/minified/jquery.ui.sortable.min.js and the plugin works when it is used with it.

    Go to the components shared > Plug-ins > PivotTable, delete the original jquery.ui.sortable.min.js of the files section and download the 1.10.4 version instead.

  • APEX 5 modal page: CSS for the layout does not work

    Hi experts,

    I have problem with CSS tag in the pages of the dialog box modal.

    If I use a few CSS changes for APEX DA label (for personal reasons), it works for a normal page.

    Example:

    standard page: label #P2_X_STATUS_LABEL {make-weight: 700}-works

    modal page: label #P3_X_STATUS_LABEL {make-weight: 700}-does not work


    I tried to change the style of firebug (color, background,...) for each element on a page modal. It does not work. Also with! important attribute. I checked the 'Get matching items' jQuery selector and it shows me the correct items.


    How is that possible?

    I upgraded from 4.2 and I need this feature (base), to the works. (for modal too)


    Concerning

    J

    It will help if you demonstrate your problem to apex.oracle.com.

    Please, create a workspace of comments and provide us with credentials in order to visualize and debug your question.

    Thank you

    Sunil Bhatia

  • APEX 5. Dynamic action on the CHANGE event does not work after applying the filter on IR.

    APEX 5.

    Dynamic action for the CHANGE event does not work after applying the filter on IR.

    Event: Change, selection Type: jQuery Selector, jQuery Selector: td [header = 'abc'] entry

    Real action

    Selection type: jQuery Selector, jQuery Selector: td [header = 'abc'] entry, Action: run the Javascript Code

    Is TI WHEREAS behavior?

    I know, I can work around this problem by using the Refresh event and javascript, but I prefer DA and if possible Change event.

    Concerning

    mdyla

    mdyla wrote:

    It is, how to force them reallocate dynamic Action in the event of CHANGE of the input elements after refresh of IR region.

    Set the dynamic scope of the event action to Dynamics.

  • Apex 5 ir action menu does not work with the 15 theme

    I'm trying to apply for apex 4.2 using the 15 theme in apex 5, but the IR Action menu does not work.

    Any suggestions?


    concerning

    Saverio

    the problem has been resolved; It was due to incompatibility with the jquery.menu plug-in.

    concerning

    Saverio

  • navigation does not work on the cell phone screen

    Hi guys,.

    I'm baaacckkkk... ok I downloaded on the web. My browsing on the mobile phone does not work and the carousel does not work... they worked in dreamweaver, so I must have broke something when I loaded up...

    Here is the html file something seems obvious:

    <! DOCTYPE html >

    < html lang = "en" >

    < head >

    <! - Bill DiLuigi website, a site of basic home, contact, media and songs, time, work and credentials - >

    <!-Kathy Bampfield | -> 28/02/2016

    < meta charset = "utf-8" >

    < meta http-equiv = "X-UA-Compatible" content = "IE = edge" >

    < meta name = "viewport" content = "width = device-width, original scale = 1" >

    < name meta = "keywords" content = "Bill Diluigi, songwriter, musician, artist, christian, Editor, Nashville, Tennessee" > ""

    < name meta = "description" content = "Bill DiLuigi is a composer, musician and artist, publisher who lives in Tennessee Nashille." >

    < title > Bill DiLuigi < / title >

    <!-"bootstrap"->

    < link href = "bootstrap.css" rel = "stylesheet" > "

    < link href = "styles.css" rel = "stylesheet" >

    <! - HTML5 shim and Respond.js for IE8 take in charge of the HTML5 elements and questions from the media - >

    <!-WARNING: Respond.js does not work if you view the page via file://-->

    <!-[if lt IE 9] >

    " < script src =" https://OSS.MaxCDN.com/html5shiv/3.7.2/html5shiv.min.js "> < / script > .

    " < script src =" https://OSS.MaxCDN.com/respond/1.4.2/respond.min.js "> < / script > .

    <! [endif]-->

    < / head >

    < body >

    < div class = "container-fluid #wrapper" >

    < nav class = "navbar, navbar-default" >

    < div class = "container" >

    <!-brand and toggle get grouped together for better mobile display->

    < div class = "bar navigation-header" >

    < button type = "button" class = "toggle navigation bar has collapsed" data-toggle = 'collapse' data-target = "#defaultNavbar1" aria-expanded = "false" > < span class = "sr only" > toggle navigation </span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < span class = 'bar icons' > < / span > < / button >

    < / div >

    <!-collect the nav links, forms, and other content to alternate->

    < div class = "navbar-collapse collapse" id = "defaultNavbar1" >

    < ul class = "navbar-nav nav" >

    < class li = "active" > < a href = "index.html" > home < span class = 'sr-only' > (ongoing) </span > < /a > < /li >

    < class li = "active" > < a href = "work.html" > work < span class = "sr only" > (ongoing) </span > < /a > < /li > ""

    < class li = "active" > < a href = "contact.html" > Contact < span class = "sr only" > (ongoing) </span > < /a > < /li > ""

    < /ul >

    <!-/ .navbar-collapse->

    < / div >

    <!-/ .container-fluid->

    < / div >

    < / nav >

    < div id = "carousel1" class = "slide Carousel" data-ride = "Carousel" >

    < ol class = "Carousel-indicators" >

    < li data-target = "#carousel1" data-slide-to = "0" class = "active" > < /li >

    < li data-target = "#carousel1" data-slide-to = "1" > < /li >

    < li data-target = "#carousel1" data-slide-to = "2" > < /li >

    < /ol >

    <! - a wrapper for the legends and images/objects - >

    < div class = "Carousel-interiors" role = "listbox" >

    < div class = "active item" > < img src = "Images/slide1.jpg" alt = "First slide" class = "Center-block" > "

    < div class = "Carousel-caption" >

    < h3 > Bill DiLuigi < / h3 >

    < p > musician | Songwriter | Artist < /p >

    < / div >

    < / div >

    < div class = "item" > < img src = "Images/slide2a.jpg" alt = "Second image slide" class = "Center-block" > "

    < div class = "Carousel-caption" >

    < h3 > Anthony Smith, Bill DiLuigi, Chris Young < / h3 >

    Songwriting < p > < /p >

    < / div >

    < / div >

    < div class = "item" > < img src = "Images/slide3b.jpg" alt = "Third slide" class = "Center-block" > "

    < div class = "Carousel-caption" >

    < h3 > Richie McDonald < / h3 >

    Duo "still there for me" < p > with Amber Hayes < /p >

    < / div >

    < / div >

    < / div >

    <! - carousel controls - >

    < a class = "Carousel-control left" href = "#carousel1" role = "button" data-slide 'prev' = > < span class = "glyphicon glyphicon-chevron-left" aria-hidden = "true" > < / span > < span class = 'sr-only' > previous </span > < /a > < a class = "carousel-control right" href = "#carousel1" role = "button" data-slide 'next' = > < span class = "glyphicon glyphicon-chevron-right" aria-hidden = "true" > < / span > < span class = 'sr-only' > next </span > < /a >

    < / div >

    < section id = 'hand' >

    < h1 > Bill DiLuigi < / h1 >

    < p > Bill DiLuigi is a musician who came out of the eclectic music scene of Philadelphia. His influences are just as eclectic; Since the Delta Blues to Grunge and country. He was part of the Mantra Sierra in the 2000s. The Palestinian Authority based band mixed the heaviness of Soundgarden with sampling and female vocals.

    His background as a cult leader also helped to learn the craft of Christian Music. He gives thanks in all things to his Lord and Savior, Jesus Christ. < /p >

    < p > in 2005, Bill moved to Nashville and is now a writer of staff for partners in rhyme on Music Row. In addition to writing hits for stars, it is a powerful performer with a unique style of honest. "I don't want to just people to come watch me do, I want to share my heart and give them something to take away." His songs have been in the Country of the Billboard Top 100 and Americana Top 100 charts. He is a regular performer at the Bluebird Café. He played in the world of the Bitter End in New York for the Tamworth Festival in Australia. < /p >

    < / item >

    < p >

    < /p >

    < / div >

    < div class = "row" >

    < div class = "col-md-4 collar-xs-12" >

    < div class = "thumbnail" id = "a" > < img src = "Images/ThumbNailSchedule.jpg" alt = "Thumbnail Image 1" class = "promoting the img img-sticker" > ""

    < div class = "caption" >

    < h3 class = "center text" > annex < / h3 >

    < p > listening to the music of live Bill! < /p >

    < class p = "center text in uppercase text" > < a href = "BillSchedule.html" class = "btn, btn-primary" role = "button" > find out where Bill is to play < /a > < /p > "

    < / div >

    < / div >

    < / div >

    < div class = "col-md-4 collar-xs-12" >

    < div class = "thumbnail" id = "two" > < img src = "Images/desktop_young_and_the_restless_entertainment_hd-wallpaper - 200.jpg" alt = "Thumbnail Image 1" class = "promoting the img img-sticker" >

    < div class = "caption" >

    < h3 class = "center text" > investments < / h3 >

    < p > extract work. the Bill < /p >

    < class p = "center text in uppercase text" > < a href = "work.html" class = "btn, btn-primary" role = "button" > work of Bill < /a > < /p > "

    < / div >

    < / div >

    < / div >

    < div class = "col-md-4 collar-xs-12" >

    < div class = "thumbnail" id = "3" > < img src = "Images/LetsTalk200.jpg" alt = "Thumbnail Image 1" class = "promoting the img img-sticker" > ""

    < div class = "caption" >

    < h3 class = "center text" > Let's Talk < / h3 >

    < p > need to talk with Bill? < /p >

    < class p = "center text in uppercase text" > < a href = "contact.html" class = "btn, btn-primary" role = "button" > Contact Bill < /a > < /p > "

    < / div >

    < / div >

    < / div >

    < / div >

    < div class = "row" >

    < div class = "col-md-4" > < / div >

    < / div >

    < footer > Bill DiLuigi | Rhyme partners and 888 red music | 1109 16TH Ave South, (former Vincent music Bldg). Nashville, TN 37212 | 615-336-4556 | & copy; Copyright 2016 < / footer >

    <! - jQuery (necessary to Bootstrap JavaScript plugins) - >

    "< script src ="... / js/jquery-1.11.3.min.js "> < / script >"

    <! - include all the plugins compiled (see below), or include individual files to the need - >

    "< script src ="... / js/bootstrap.js "> < / script >"

    < / body >

    < / html >

    Remove the highlighted items and everything is fine!

  • My sensitive back of Web Site navigation bar does not work by smartphone - fewowiesbach.de. What can I do?

    My sensitive back of Web Site navigation bar does not work by smartphone - fewowiesbach.de. What can I do?

    It does not work because the jquery and JavaScript of Bootstrap files are not on the server, or if they are, they are in the wrong place.

    This topic has been moved, by the way, for the main forum for Support of Dreamweaver.

Maybe you are looking for

  • PORTEGE R100 CD-ROM recovery problem

    Hi, I had a few problems of recovery PORTEGE R100. My problem is that when I try to reinstall the system with the recovery of the boot disk CD, it does not recognize the CD. The CD-ROM is not a TOSHIBA product. Is there any solution for this?

  • Why ni845xDioReadLine takes several milliseconds to run?

    I use a USB-8451 to communicate with a device of RM3000 using the SPI protocol.  My program uses 'base' 8451 C API.  The RM3000 has a DRDY line which goes high when the requested data are available. This is connected to port 0, line 0 the 8451 dio in

  • RT

    Hello I'm new to real-time acquisition and I use cRIO 9024 with NI 9219 NI 9225 and NI 9215 for my data acqisition. I am acquiring data in mode scan interface. I modified the example of scan interface VI according to my condition, and it does not wor

  • find som pa XP device

    N can not find um som Parap o WindowsXP device

  • Wireless hacked; Impossible to remove unwanted users from the list

    I had a wireless network that I used with my laptop. I deleted information wireless network of my laptop (win7) and resumed contact with a cable. I think the network has been hacked because there are about 12 other user names in the list of connectio