What to do with js, css files

I hope this question is appropriate for this forum because I have scratched my head for hrs. I am in the mission of finding a simple drop down menu and came across to this site http://css-tricks.com/simple-jquery-dropdowns/
It uses minimum jquery and CSS to achieve it. Looks like it is reasonable for a novice to tackle. Codes are downloaded and unzipped ( there are css,images,js). Question is how do I even get this to run under my test application ? I would think I need to import the image files but what to do with the rest of files? they are not plugin. Could any guru give me a jump start ?
Any help is appreciated.
ZenG

You should be able to import them into APEX under "Shared Components - Static Files" and "Shared Components - CSS". Then you can include the files in your page template using the following html code:
for js files
<script src="#APP_IMAGES#hoverIntent.js"></script>for css files
<link rel="stylesheet" href="#APP_IMAGES#style.css" type="text/css" />After a quick glance, I don't think you'll need the image they have included.

Similar Messages

  • Working with bootstrap css file after opening the browser

    working with bootstrap css file after opening the browser when i came back on working on bootstrap my computer started hanging and opning new tabs  and showing message " A caused the program to stop working correctly.Windows will close thoe program and notify you if  solution is available"

    Hi Geetha,
    1.) button problem:
    i don't know how you open the form - when you do it with a XML file maybe you packed the wrong XML file into your addon installer.
    2.) the flickering can be a problem of formatted searches or interacting with other addons.
    when addon a. changes a field it can be that addon b. does something because of the event from addon a.
    the same can happen when you have formatted searches that do something when a field changes.
    ok - that are my last tipps for this day
    good night
    David

  • Dark theme in Linux screws up Firefox 4.0, help with userContent.css file

    OS: Fedora 14 x86_64 / Gnome 2.3x
    Problem with: Firefox 4.0
    Using dark gtk themes changes the background color of common form controls (input boxes, text boxes, radio buttons, etc...) into the same dark color used in the theme, so you end up with dark controls with black text, which makes them unreadable.
    While searching I found that there's a way to make Firefox override the system colors, and that is by creating a userContent.cs file.
    Here's the userContent.css file:
    ===========================
    body {
    background-attachment: scroll !important;
    input {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    textarea {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    select {
    border: 2px inset white;
    background-color: white;
    color: black;
    -moz-appearance: none !important;
    input[type="radio"],
    input[type="checkbox"] {
    border: 2px inset white ! important;
    background-color: white ! important;
    color: ThreeDFace ! important;
    -moz-appearance: none !important;
    .*|*::-moz-radio {
    background-color: white;
    -moz-appearance: none !important;
    button,
    input[type="reset"],
    input[type="button"],
    input[type="submit"] {
    border: 2px outset white;
    background-color: #eeeeee;
    color: black;
    -moz-appearance: none !important;
    body {
    background-color: white;
    color: black;
    display: block;
    margin: 8px;
    -moz-appearance: none !important;
    ===========================
    This css code fixes text boxes, input boxes, etc... but I still have dark radio buttons, dark check boxes, and dark drop down menus, does anyone know what might be causing this problem?
    Examples:
    http://i901.photobucket.com/albums/ac211/0xGFX007/001.png
    http://i901.photobucket.com/albums/ac211/0xGFX007/002.png

    FWIW, an alternative to going back to a light theme for whatever reason: there is a theme with several variations called "Shiki-Colors", in which only half of the stuff is dark.

  • What's wrong with the XML file????

    Hello!
    I am tryig to implement a "Filter" on my Apache tomcat server. The problem occures when I try to modify the XML-file on the server. This is the XML file:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
                        <!-- The Filter -->
    <filter>       
         <filter-name>LoginChecker</filter-name>
         <filter-class>filters.LoginFilter</filter-class> 
    </filter>
                        <!-- The Filter Mapping -->
    <filter-mapping>       
         <filter-name>LoginChecker</filter-name> 
         <url-pattern>/secret/*</url-pattern> 
    </filter-mapping>
                        <!-- The Servlets -->
    <servlet>
            <servlet-name>SLoginHandler</servlet-name>
            <servlet-class>LoginHandler</servlet-class>
    </servlet>
    <servlet>
             <servlet-name>SProtectedResource</servlet-name>
             <servlet-class>ProtectedResource</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SRegister</servlet-name>
             <servlet-class>Register</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SVerify</servlet-name>
             <servlet-class>Verify</servlet-class>
    </servlet>
                        <!-- ....The Servlets Mapping -->
    <servlet-mapping>
            <servlet-name>SLoginHandler</servlet-name>
             <url-pattern>/LoginHandler</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SProtectedResource</servlet-name>
             <url-pattern>/ProtectedResource</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SRegister</servlet-name>
             <url-pattern>/Register</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
            <servlet-name>SVerify</servlet-name>
            <url-pattern>/Verify</url-pattern>
    </servlet-mapping>
    </web-app>When I try to run another sevlet on the server side, e.g, "Verify", I'll get an error message. BUT if I changethe XML file to (remove the "filter" spec):
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
                        <!-- The Servlets -->
    <servlet>
            <servlet-name>SLoginHandler</servlet-name>
            <servlet-class>LoginHandler</servlet-class>
    </servlet>
    <servlet>
             <servlet-name>SProtectedResource</servlet-name>
             <servlet-class>ProtectedResource</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SRegister</servlet-name>
             <servlet-class>Register</servlet-class>
    </servlet>
    <servlet>
            <servlet-name>SVerify</servlet-name>
             <servlet-class>Verify</servlet-class>
    </servlet>
                        <!-- ....The Servlets Mapping -->
    <servlet-mapping>
            <servlet-name>SLoginHandler</servlet-name>
             <url-pattern>/LoginHandler</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SProtectedResource</servlet-name>
             <url-pattern>/ProtectedResource</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
             <servlet-name>SRegister</servlet-name>
             <url-pattern>/Register</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
            <servlet-name>SVerify</servlet-name>
            <url-pattern>/Verify</url-pattern>
    </servlet-mapping>
    </web-app>The servlet "Verify", or some other servlet, will work!!!
    What is wrong with my filter spec in the XML file?????

    hepp, no one asked for it...so no one will get it!
    BUT if "stevejluke" want another duke so let me know!

  • Issue with multiple CSS files

    I am having a problem adding multiple css files in an article.  When i alter the html close the article then re-open it. RoboHelp changes this and adds 1 css link.  See images below.  For now I am going to put all styles in one file, but want to know if there is a work around and what others are doing for this.
    Before close
    After close and re-open

    Sorry but RoboHelp only supports one CSS file.
    See www.grainge.org for RoboHelp and Authoring tips

  • Making a .Html file compatible with a .Css file

    Hey. After shortening everything that I found possible I am back and have found that my header.html file is incompatible with the stylesheet 'common-style'. I need these two files to be compatible to be able to merge the header with my other files. If you find these files to be difficult to edit because of the sheer length I would appreciate some help on how to make the files even more shorter (While maintaining compatibility). Thanks for the help.
    The 'Header' Html File:
    Expertpcguides.com
    The 'Header' Styling:
    http://www.expertpcguides.com/css/header-styling.css
    The .CSS Stylesheet Which the header is incompatible with:
    http://www.expertpcguides.com/css/common-style.css

    Fair enough, I suppose I did not provide enough detail about my previous problem to make the topic understandable.
    Rephrased Question:
    Hey, After Nancy O. Told me to shorten and change my coding to make everything easier to read/solve. I am back asking about the same problem I had before this being that my header.html file is incompatible with the style sheet 'common-style.css'. I would appreciate some help with making the necessary changes which are required to merge the two files.
    IF you are still having the same problem as Nancy O. did earlier I need some more help with making 'everything shorter' as sometimes if I attempt to make the stylesheet shorter by changing a few lines of coding the file will no longer work properly.

  • What to do with "Unix Executable Files"?

    What do I do with Unix Executable Files? I've tried navigating to them in Terminal and typing in the file name but that doesn't work. How do I execute them?
    I'm trying to install some web development framework software, and it appears that the command names start with the file I'm referring to but when I'm in the directory containing the Unix Executable File and type in the file name followed by a command it doesn't work. I get "command not found"
    G5   Mac OS X (10.4.6)  

    Hi warpdesign,
       In old-style shell environments, all files in the current working directory were defined to be in your PATH, where the shell looks for executables. That was before Trojan Horses. Now you have to specify the current working directory in the command line. Fortunately there is a nice "shorthand" for that. If foo.sh is an executable in the current working directory then it can be invoked this way:
    ./foo.sh
       If you're interested in learning a little more about UNIX, I used to have a long post of links to what I think are some of the better beginning UNIX tutorials and books. However, as others posted great links and I stole them, my post became too long so I put it in a web page. Bill Scott did the same thing so here is Bill's and here is mine.
    Gary
    ~~~~
       University politics are vicious precisely because the
       stakes are so small.
             -- C. P. Snow

  • What is wrong with my txt file or merge doc?

    I'm trying to merge data from a txt file.  It's for name badges.  I've got the document designed (8-1/2 x 11" Avery 5392, 6 badges per sheet) and connected successfully to my data source.  There are only 4 types of info in the txt file (agency name, state, name, title).  When I create the merge fields for each badge position and click preview, I only get the first record repeated into each of the 6 locations on the page.  What am I missing or doing wrong?  I'm using InDesign CS2.
    I've attached the txt file.
    I've also attempted this with a csv file with and got the same results.
    Thanks.

    I downloaded your sample files, and here is what I had to adjust:
    1, I made the master page a single page; not facing pages. I changed from inches to picas
    2. I made two layers: one for graphics and second for text, above the graphics layer
    3. I put the artwork ai file on the graphics  layer on the master page
    4. I deleted 5 of 6 duplicate text frames on page 1; leaving only the first upper left text frame
    5. I moved that lone textframe to the master page, in the same relative position
    6. Text in that text frame should have been controlled with paragraph styles, BTW, but that is a detail
    7. I returned to view page 1
    Then, going to the DataMerge panel, I turned on preview and also clicked the right-most button at the bottom of the panel to setup the merge.
    All records and Multiple Records per document page
    Then, onto the Multiple Record Layout tab:
    Top margin 16pica
    Bottom margin 3pica
    Left margin 2pica
    Right margin 2pica
    Spacing between columns 1p6
    Spacing between rows 11p6
    Check on Preview Multiple Record Layout
    OK to generate
    So, it turns out your txt file was OK as it was.
    Mike Witherell in Maryland

  • What to do with an ISO file?

    I've downloaded a zip file which has expanded to an iso file - I thought i needed to burn it to dvd before opening but nothings happened.... it does look like it hasn't fully uncompressed.... any ideas? Thanks....

    An ISO is yet another compressed file. So your compressed ZIP archive was just a compressed ISO archive (double-zip!). Not sure why anyong would do that, but simply copying the ISO to a disc won't work. You'll end up with a single file (the ISO) burned on the disc.
    You need to do a "burn image" session. Nearly all burning software has that ability. Basically the burning software unzips the archive to disc during the burn so that you end up with a multitude of files on your disc.
    ISO is particularly useful when imaging a bootable disc, and then making copies from that image that boot like the original.
    Good luck.
    Jeffo93y

  • What's wrong with my Quartz files?

    I have an issue with Quartz Composer files. Some screensaver files, like arabesque, shell spectrum, and RSS visualizer, crash system preferences whenever i try to select them. Also, the actual files (the ones in the system folder) make the finder crash whenever i try to open them or use quick look. I've already replaced the files thinking they were corrupted, but it keeps happening. I transferred the files to my old iMac G5 and it reads them just fine! Help!!
    Also, iChat keeps crashing whenever i try to use the video effects.
    Message was edited by: Craig Anschuetz

    Have you by any chance installed the beta version of the upcoming Safari? If so, that's the problem. See this thread for more details:
    http://discussions.apple.com/thread.jspa?messageID=7975911
    If you aren't using the beta Safari afraid I don't know. Mine are all working just fine in 10.5.5. I don't use iChat, so don't know if that would be affected by the same problems.
    Francine
    Francine
    Schwieder

  • Xml file with external css file trying to pull in is not working

    Can anyone tell me where I'm going wrong?
    I have thumbnails loading and then as you click on each one a
    larger pic &
    description shows.
    I'm pulling the large pic & description in from
    studio.xml, and the css is
    in xmlstyles.css.
    Now when I assign &myText= to <desc> in the xml, it
    loads up *all* the
    <desc> into that first picture/description instead of
    throughout.
    Any help is very appreciated!
    function loadXML(loaded) {
    if (loaded) {
    /////////////////////////add xml
    data////////////////////////////////////////////
    xmlNode = this.firstChild;
    image = [];
    title = [];
    thumbnails = [];
    description = [];
    total = xmlNode.childNodes.length;
    for (i=0; i<total; i++) {
    //start child stuff
    image
    = xmlNode.childNodes.childNodes[0].firstChild.nodeValue;
    thumbnails
    = xmlNode.childNodes.childNodes[1].firstChild.nodeValue;
    thumbnails_fn(i);
    title
    = xmlNode.childNodes.childNodes[2].firstChild.nodeValue;
    description
    = xmlNode.childNodes.childNodes[3].firstChild.nodeValue;
    thumbnails_fn(i);
    firstImage();
    } else {
    content = "file not loaded!";
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("studio.xml");
    ////////////////////////// load style
    sheet///////////////////////////////////////////
    myStyle = new TextField.StyleSheet();
    myStyle.load("xmlstyles.css");
    desc_txt.styleSheet = myStyle;
    thisText = new LoadVars();
    thisText.load("studio.xml");
    thisText.onLoad = function(success) {
    if (success) {
    desc_txt.text = thisText.myText;
    listen = new Object();
    listen.onKeyDown = function() {
    if (Key.getCode() == Key.LEFT) {
    prevImage();
    } else if (Key.getCode() == Key.RIGHT) {
    nextImage();
    Key.addListener(listen);
    previous_btn.onRelease = function() {
    prevImage();
    next_btn.onRelease = function() {
    nextImage();
    p = 0;
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
    preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
    preloader._visible = false;
    if (picture._alpha<100) {
    picture._alpha += 10;
    function nextImage() {
    if (p<(total-1)) {
    p++;
    if (loaded == filesize) {
    //here's what you load up
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    picture_num();
    desc_txt.text = description[p];
    function prevImage() {
    if (p>0) {
    p--;
    picture._alpha = 0;
    picture.loadMovie(image[p], 1);
    title_txt.text = title[p];
    picture_num();
    desc_txt.text = description[p];
    function firstImage() {
    if (loaded == filesize) {
    //content
    picture._alpha = 0;
    picture.loadMovie(image[0], 1);
    title_txt.text = title[0];
    picture_num();
    desc_txt.text = description[0];
    function picture_num() {
    current_pos = p+1;
    pos_txt.text = current_pos+" / "+total;
    function thumbNailScroller() {
    ///////////////////////////////////////////// thumbnail
    code!///////////////////////////////////////////
    this.createEmptyMovieClip("tscroller", 1000);
    scroll_speed = 10;
    tscroller.onEnterFrame = function() {
    if ((_root._ymouse>=thumbnail_mc._y) &&
    (_root._ymouse<=thumbnail_mc._y+thumbnail_mc._height)) {
    if ((_root._xmouse>=(hit_right._x-40)) &&
    (thumbnail_mc.hitTest(hit_right)))
    thumbnail_mc._x -= scroll_speed;
    } else if ((_root._xmouse<=40) &&
    (thumbnail_mc.hitTest(hit_left))) {
    thumbnail_mc._x += scroll_speed;
    } else {
    delete tscroller.onEnterFrame;
    function thumbnails_fn(k) {
    thumbnail_mc.createEmptyMovieClip("t"+k,
    thumbnail_mc.getNextHighestDepth());
    tlistener = new Object();
    tlistener.onLoadInit = function(target_mc) {
    //next line is where you add total thumbnail width plus a
    little extra so
    they are spaced nicely
    target_mc._x =
    hit_left._x+(eval("thumbnail_mc.t"+k)._width+85)*k;
    target_mc.pictureValue = k;
    target_mc.onRelease = function() {
    p = this.pictureValue-1;
    nextImage();
    target_mc.onRollOver = function() {
    this._alpha = 50;
    thumbNailScroller();
    target_mc.onRollOut = function() {
    this._alpha = 100;
    image_mcl = new MovieClipLoader();
    image_mcl.addListener(tlistener);
    image_mcl.loadClip(thumbnails[k], "thumbnail_mc.t"+k);

    I aOn to my problem:
    When I open the iTunesSteup this is the error I recieve:
    "The feature you are trying to use is on a network resource that is unavaible.
    I'm also having the exact same problem. Does any one know how tyo help us!!!
    A few things work like podcast. But when i download them they wont go onto my 5th GEn Ipod video. and i cant get the firmware updated when I go to "settings" "about" it says version 1.0. Could someone help me out? where do I download the newer version. Why wont my Podcasts work?

  • How to Live View with external CSS files?

    I am using a simple HTML page that references several external CSS style sheets.  The style sheets are site root relative.  The code validates.
    http://www.sandsmuseum.com/coinop/games/evansraces/documentation/index.html
    In Dreamweaver, the page looks good in Design View.  Previewing in a browser looks good when the box to save temporary files is checked (replaces css inline for the input to the browser.)
    However the page is missing the CSS and an image that is site root relative when I try to view it with Live View.
    Does Live View only work with a test server?  I tried setting up a test server that points to the remote server but that does not seem to help.
    I am sure I am missing something.  Can someone please help?
    Thanks,
    Michael

    Apparently I did not ask the question correctly or even make it interesting.  Does anyone have a suggestion on how I might ask the question next time?
    thanks
    Michael

  • What to do with MPEG-1 Files!?!?

    I am trying to blend some photos and video together to make a movie (and ultimately a DVD).  I am totally flying by the seat of my pants here, but now I realize that the video files I was given are MPEG-1 and nothing on my machine appears to be compatible...  and guidence about what I can do to convert the files or get the programs I DO have to deal with the files in their current form?
    Thanks in advance.
    Jen

    MPEG Streamclip (free) can convert your MPEG-1 files to DV Stream for use in any iMovie version.

  • Firefox asks what to do with a PLS file

    When I attempt to stream radio from the BBC site by clicking Listen Live a window opens which reports:
    You have chosen to open: r2_heaacv2.pls, which is a PLS file, from www.bbc.co.uk
    What should Firefox do with this file?
    I need to know what to select?
    Thanks

    See if this helps you. <br />
    http://www.ghacks.net/2011/11/29/play-playlist-pls-files-in-windows-media-player/

  • Anyone know what to do with this xml file

    hi,
    I have one problem regarding xml file.......i know xml parsing but now xml format is different so i can't manage properly......if u have any idea then pls tell me what to do.....
    <getFriends generator="zend" version="1.0">
    <key_0>
    <firstName>Alain</firstName>
    <lastName>Nicod</lastName>
    <cities>
    <key_0>
    <id>0</id>
    <city>St Prex</city>
    </key_0>
    <key_1>
    <id>1</id>
    <city>Cochin</city>
    </key_1>
    <key_2>
    <id>2</id>
    <city>surat</city>
    </key_2>
    <key_3>
    <id>3</id>
    <city>amreli</city>
    </key_3>
    </cities>
    </key_0>
    </getFriends>
    I have put cities on didStartElement then its not giving perfet data so
    what should i do now.........any idea about........
    Thanks,
    Haresh.

    It is both easier and more complicated than that. I really can't give you any "sample code" because it isn't a coding issue. It is more of a data representation issue. XML is both a "simple" markup language and a complex data representation language. You need to read up a bit on XML to see what you can do with it. Come up with a test data set that is formatted the way that make sense to you. Or, maybe create a test data structure in your code and save that to XML to see how the native representation looks.
    At that point, you will know what your input looks like and you will know what your output should look like. You just need a way to get from A -> B. For XML, the quickest way to do that is through XSLT.

Maybe you are looking for