Hello just a quicky, how do I code a website to only use firefox and how to direct users to download firefox if they don't have it so that my site looks 100% as intended

Hi I am a new web designer and is currently working to make myself a website. Now the thing is I am coding it using HTML5 and all other websites is not so updated like Firefox, so how do I code my site and tell browsers that it cant be accessible without a Firefox browser and if they don't have it direct them to download it from Firefox please help me. thanks hope to hear from you guys...

It is better not to do a browser check but instead do a check to see if specific HTML5 features that you want to use are supported (if(!xxxx){alert("You need a browser that supports HTML5")})
*https://developer.mozilla.org/en/HTML/HTML5
*https://developer.mozilla.org/en/HTML/HTML5/Introduction_to_HTML5
*http://caniuse.com/#cats=HTML5

Similar Messages

  • How can I edit my website from another computer? and how can I create a new website next to the one, I have already? Can anyone help, please?

    How can I edit my website from another computer? and how can I create a new website next to the one, I already have? Can anyone help, please?

    Move the domain.sites file from one computer to the other.
    The file is located under User/Library/Application Support/iWeb/domain.sites.  Move this file to the same location on the other computer and double click and iWeb will open it.  Remember, it is your User Library that you want and not your System Library, as you will not find iWeb there.
    Just create a new site on the same domain file and it will appear below the other site.  If you want them side by side then duplicate your domain file and have one site per a domain file and they can then be side by side.

  • I loaded what I guess is the new version of Firefox and it completely changed my whole task bar. I don't have my Norton Logins with stored passwords, and it's hard to find my favorites. Help get it back to how it was.

    I loaded what I guess is the new version of Firefox and it completely changed my whole task bar. I don't have my Norton Logins with stored passwords, and it's hard to find my favorites. Help get it back to how it was.

    Credit Tony E
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data. See https://support.mozilla.com/kb/Uninstalling+Firefox
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • I own CS5 on my work laptop which was just stolen. Do I need to buy CS from scratch or can I transfer CS5 to a new computer even though I don't have the one that CS5 is on?

    I own CS5 on my work laptop which was just stolen. Do I need to buy a new CS from scratch or can I transfer CS5 to a new computer even though I don't have the computer that CS5 is on? Company purchased CS5 before the whole creative cloud leasing thing started, but after discs.

    You can use web chat to remove authorization from the computer that was stolen:
    Serial number and activation support
    You can download the software again here:
    Other downloads

  • My iPhone 5 appears to be using too much memory, particularly 7.9GB out of the 32GB labeled "OTHER". Even my iPad Air has only 3.9GB labeled "OTHER". How do I identify what "OTHER" is actually used for and how do I mitigate this?

    According to iTunes I am using approximately 20.35GB of the available 27.32GM of memory, leaving about 7GB free. Of the used memory, about 7.9GB is labeled "OTHER". Making the same measurement on my iPad Air, only 3.9GB is labeled "OTHER". Why am I loosing so much memory capacity and what do I do to mitigate this problem?
    This is having a significant effect on using my iPhone for recording Video interviews which in some cases constitute two to three hours of video. I need to be able togged the "OTHER" memory space so I can do more than one video recording during a session. Lowering the "OTHER" category to 3.9GB, the same as the iPad Air, would make it possible to record two or in some cases three videos before having to offload them to the MacBook Pro for editing in the evening.

    Charliebear88 wrote:
    No. He mentions freeing up storage on the iPhone, Mac, and hard drive. I'm looking for just the iPhone, and his suggestion for that is downloading some program.
    No, it's not, if you would actually read the linked information like I said.  There is plenty of information in this link about how to reduce or eliminate your 'Other' data without using third-party programs or procedures:
    http://appducate.com/2013/01/reclaim-other-storage-space-on-ipad-iphone-and-ipod /
    • Delete Browser Cache
    • Delete Mail account and re-add
    • Delete Text Messages
    • Empty out the Reading List
    • Delete iTunes Backups
    • Backup to iCloud instead of iTunes
    • Restore as new then restore the backup
    • Restore as new, but don't restore backup

  • Using "+" I am unable to open additional tabs; if I use File and click on New Tab it will open. I don't have the Ask Toolbar. How can this be corrected?

    Prior to today, when I clicked on the "+" a new tab would open. It no longer does that. However, when I open File and click on "New Tab" it opens just fine. I do not have the Ask Toolbar as far as I know (this was mentioned as a problem previously). What can be done to fix this? Thank you.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    You can also check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf
    *https://support.mozilla.org/kb/Toolbar+keeps+resetting

  • How to cast vector to vector with out using loop. and how to override "operator =" of vector for this kind of condition.

    Hi All How to TypeCast in vector<>...  typedef  struct ...  to class... 
    //how to cast the vector to vector cast with out using loop
    // is there any way?
    //================ This is Type Definition for the class of ClsMytype=====================
    typedef struct tagClsMytype
    CString m_Name;
    int m_Index;
    double m_Value;
    } xClsMytype;
    //================ End of Type Definition for the class of ClsMytype=====================
    class ClsMytype : public CObject
    public:
    ClsMytype(); // Constructor
    virtual ~ClsMytype(); // Distructor
    ClsMytype(const ClsMytype &e);//Copy Constructor
    // =========================================
    DECLARE_SERIAL(ClsMytype)
    virtual void Serialize(CArchive& ar); /// Serialize
    ClsMytype& operator=( const ClsMytype &e); //= operator for class
    xClsMytype GetType(); // return the typedef struct of an object
    ClsMytype& operator=( const xClsMytype &e);// = operator to use typedef struct
    ClsMytype* operator->() { return this;};
    operator ClsMytype*() { return this; };
    //public veriable decleare
    public:
    CString m_Name;
    int m_Index;
    double m_Value;
    typedef struct tagClsMyTypeCollection
    vector <xClsMytype> m_t_Col;
    } xClsMyTypeCollection;
    class ClsMyTypeCollection : public CObject
    public:
    ClsMyTypeCollection(); // Constructor
    virtual ~ClsMyTypeCollection(); // Distructor
    ClsMyTypeCollection(const ClsMyTypeCollection &e);//Copy Constructor
    DECLARE_SERIAL(ClsMyTypeCollection)
    virtual void Serialize(CArchive& ar);
    xClsMyTypeCollection GetType();
    ClsMyTypeCollection& operator=( const xClsMyTypeCollection &e);
    ClsMyTypeCollection& operator=( const ClsMyTypeCollection &e); //= operator for class
    void Init(); // init all object
    CString ToString(); // to convert value to string for the display or message proposed
    ClsMyTypeCollection* operator->() { return this;}; // operator pointer to ->
    operator ClsMyTypeCollection*() {return this;};
    public:
    vector <ClsMytype> m_t_Col;
    //private veriable decleare
    private:
    //===================================================
    ClsMytype& ClsMytype::operator=( const xClsMytype &e )
    this->m_Name= e.m_Name;
    this->m_Index= e.m_Index;
    this->m_Value= e.m_Value;
    return (*this);
    //==========================Problem for the vector to vector cast
    ClsMyTypeCollection& ClsMyTypeCollection::operator=( const xClsMyTypeCollection &e )
    this->m_t_Col= (vector<ClsMytype>)e.m_t_Col; // how to cast
    return (*this);
    Thanks in Advance

    Hi Smirt
    You could do:
    ClsMyTypeCollection* operator->() {
    returnthis;};
    // operator pointer to ->
    operatorClsMyTypeCollection*()
    {returnthis;};
    public:
    vector<ClsMytype>
    m_t_Col;//??
    The last line with "vector<xClsMytype>
    m_t_Col;". It compiles but I doubt that is what you want.
    Regards
    Chong

  • Please tell me how to shut down apps running in the background on my iPad.  I downloaded ios7, and now when I hold my finger on them they don't have the plus sign

    Please tell me how to shut down apps running in the background with ios7

    Shut down apps
    1. Double tap the home button to bring up the multi-tasking view
    2. Swipe the app's windows upwards to close
    3. The app will fly off the screen

  • HT1725 I am having trouble down loading a uv digital copy of a movie that i recently purchased. I keep getting error code (-50) has anyone else got this and how do you resolve it?

    I am having trouble down loading a uv digital copy of a movie that i recently purchased. I keep getting error code (-50) has anyone else got this and how do you resolve it?

    Hi,
    Try the following steps:
    1. Check windows updates.
    2. Try the Microsoft Fix it in this kb to remove previous install completely:
    http://support.microsoft.com/kb/2739501/en-us
    3. Reboot.
    4. Try installing again.
    This seems helpful on the issue.
    As always, thank you for your suggestion, Don:)
    Regards,
    Melon Chen
    TechNet Community Support

  • I just updated to the latest version of Firefox and now I can no longer download facebook videos with realplayer as I formerly could. How can I downgrade to my previous version of Firefox?

    Question
    I just updated to the latest version of Firefox and now I can no longer download facebook videos with realplayer as I formerly could. How can I downgrade to my previous version of Firefox?

    Many thanks b Noir
    This is a copy of ONEof the keys  in the registry I changed  as told by Apple support today. I also have changed others as instructed by GEAR  software support to manually delete GEAR drivers (that I had installed but couldn't delete some of the others  they mentioned from Windows system 32. Then some bright spark at work told me I need the Gear drivers so  I downloaded the software and installed again.
    Sorry, just this minute went to insert image  and it is giving me a message saying this sort of content  is not allowed?.
    The most recent key I altered is in: HKey _local _machine. System\class - 4D36E965-E325-11CEBFC1-08002BE10318. Upper Filter data: Upper filter NTIDrvr  SiRem GEARAspiWDN.
    The GEARsoftware info about manually deleting  GEAR drive is from:
    http://www.gearsoftware.com/wiki/index.php?title=DRIVERS:_Windows_-_Updating%2C_ removing%2C_64_bit_versions%2C_etc
    I hope you can help

  • Pro apps Hello. What version of FCP X will work on OS 10.7.5 and how can I get this version?

    Pro apps
    Hello. What version of FCP X will work on OS 10.7.5 and how can I get this version? I cannot upgrade to a higher version because of other software that I am using . I am aware the 10.1.1 requires OS10.9 and higher but whats the highest version that works on Lion? Thanks anyone

    Do you know how to do it?
    It's quite simple.
    This link will tell you how.
    It may look long but that is only because Larry is explaining every little detail to ensure you don't go wrong.
    http://www.larryjordan.biz/create-a-dual-boot-mac-os-x-system/
    Message was edited by: Ian R. Brown

  • Just got a I PAD can i load a browser on it  ? and how

    just got a I PAD can I load a web browser on it and how please

    Atomic Browser, iCab Mobile...and more.
    http://www.appshopper.com and do a search for browsers and restrict it to iPad.

  • Hi today i bought an itun gft card from shop  ,but i found it doesnt work and display "the code has not been proprly activted". why and how to fix it up

    hi today i bought an itun gft card from shop  ,but i found it doesnt work and display "the code has not been proprly activted". why and how to fix it up

    The people at the store the gift card came from didn't activate it. Ask them or the iTunes Store staff for assistance.
    (122684)

  • My iTunes was working fine, all my CDs would import fully and quickly. Now they are importing slowly and when the CDs get to the last track they don't import and the CD drive just keeps spinning without doing anything! How can I fix this?

    My iTunes was working fine, all my CDs would import fully and quickly. Now they are importing slowly and when the CDs get to the last track they don't import and the CD drive just keeps spinning without doing anything! How can I fix this?
    I don't want to have to restart or reinstall my iTunes again as I'll have to redo all my playlists etc

    Likely that CD then. Check visually for damage, blemishes, etc., not that there's anything you can really do about those other than return the CD.
    The drive sits there and spins because it is trying to re-read the CD.  iTunes has error correction which is contributing to all this re-reading, I believe, and you may be able to disable that in preferences if you aren't picky about the result.
    You can also try other rippers such as Max or XLD.  I know those have configurable error correction.  I like XLD but it is slightly tricky to use until you find that for some reason the author has put all settings under preferences, not just the set once and forget ones.

  • How is the 'import-packages' information saved in the database, and how long?

    Hello,
    I am  developping a ECM Connector for Adobe LiveCycle ES, which is a customized component.
    1 - Who should I contact to have some specific support  ?
    There is no detailed information yet on this on the adobe site  (http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/help/wwhelp/wwhimpl/js/html/w whelp.htm?href=000931.html&accessible=true) .
    If you  think that I should address my problem to another department of Adobe, please  tell me which department?
    I give you another description of my problem. In fact, I have  been investigating on it.
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    In  fact, on thursday, I used 'import-packages'  to make a test. And since them, I  can not deploy any of my components.
    LiveCycle throws a  ClassNotFoundException.
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException:  Internal error.
    [java] at  com.adobe.idp.dsc.registry.component.impl.ComponentRegistryImpl$6.doInTransaction(Compone ntRegistryImpl.java:338)
    ... Caused  by: java.lang.ClassNotFoundException: http-0.0.0.0-8080-1Class name  com.rsd.simpleApiFolders.Context from package com.rsd.simpleApiFolders not found.
    [java] at  com.adobe.idp.dsc.DSContainerSearchPolicy.searchClassUsingParentFirst(DSContainerSearchPo licy.java:234)
    Thank you in advance
    Regards.

    1 - Who should I contact to have some specific support  ?
    That would depend on your Adobe support contract and if your organization has a TAM assigned.  You should check with your organization's Adobe contact and see what support options your organization has purchased.
    Having said that, this forum has a few people that may be able to help (but the forum does not have a SLA associated with it)
    2 - If I  put this in my component.xml file, in step  1:
    <component-id>com.rsd.adobe.livecycle.RSDFoldersConnector</component-id>
    <version>1.0</version>
    <import-packages><package  version="1.0">com.rsd.simpleApiFolders</package>  </import-packages>
    If I change the  version to 1.1 and remove the  'import-packages' (in step 2) , will the new component need the  com.rsd.simpleApiFolders package. It seems that is still needs it.If your component class needs the simpleApiFolders class then yes, you still need it.  Think of import-packages like a class-path statement (but with packages and not jars).  Its not physically moving the package into your application, but allowing you to access it from another container.
    3 - How is the  'import-packages' information saved in the  database, and how  long?
    As far as I know they are not imported into the database. As I stated above, I believe that the import-packages just allows you to point to classes that are in the app server's classpath, but are not physically in you component jar file.  As long as that class is in the app server class-path (or in the Adobe EAR file) then you should be able to access it.  Is the jar file containing the simpleApiFolders class in the app server's lib directory?

Maybe you are looking for

  • Multiple email accounts got synced on accident  when I synced with .Mac

    Yesterday when I did the sync with my .Mac account it gave me a warning that it was going to update alot of emails... thinking nothing of it I said yes. What I did not realize it that it synced all of my roommates email accounts and contacts that he

  • Premiere Pro with Diamond VC500

    Can Premiere Pro capture video from device converter "Diamond VC500"?2

  • How do I get rid of the "plus" cursor in numbers?

    I am working in numbers and having trouble with creating hyperlinks. I was able to create links but now I have the "plus" cursor and can't get rid of it and it seems my hyperlinks don't work.

  • Apps para iphone 2g

    como posso encontra apps para meu iphone 2g???

  • Webi open by default not at 100%

    Hi all, Some users are asking me if it's possible to configure one report (webi) in a way that when it's open, it's visualized not in real size (100%) but smaller as it's a bit too big. Do you know if it's possible to do it? Is that a configuration w