Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8138579
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:32:10+00:00 2026-06-06T11:32:10+00:00

My website contains : 1.FancyBox (for image overlay) 2.GalleryView (a slider) and both use

  • 0

My website contains :
1.FancyBox (for image overlay)
2.GalleryView (a slider)
and both use JQuery.

They are both free to use, but they insist on their copyright message shown where the work is used.
I’m confused as to where I must show the message.
license message of GalleryView. (Both Fancybox and this are under MIT license I suppose)

Copyright (c) 2009 John Anderson III

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Where am I to show it in my website?
And should I show a separate message for JQuery which I don’t directly use?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:32:12+00:00Added an answer on June 6, 2026 at 11:32 am

    Let us take a look as developers:

    My website contains: 1.FancyBox (for image overlay) 2.GalleryView (a slider) and both use JQuery.

    So to speak, if a user visits your website, you offer some software to download. When the user decides to download the software (activate scripts), you provide a copy of the following software:

    1. JQuery – According to the website it is MIT or GPL.
    2. FancyBox – Refers to the same: MIT or GPL.
    3. GalleryView – According to it’s LICENSE.txt file, this is MIT

    Note: 3. contains third party code with different authors and licenses, mainly BSD-3-Clause as far as I could see, but I did not looked further. I’d say, if you have professional interest in using that library contact the author of that library, ask to correct the licensing information. Permissive licenses like BSD-3-Clause have requirements that need to be matched to gain usage rights. Just saying, I’d say it’s common, so nothing to worry, just to take care of.


    As one can see with this listing – and ignoring the problems in 3. for a moment – all software is available under free software license, so as you wrote, they are free to use.

    But as you have worded it, they “insist on their copyright message shown where the work is used.”. Let’s pick that part from the BSD-3-Clause license text:

    Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

    And from the MIT license text:

    The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

    I think this is both pretty clear: When you pass along the software, you should pass along author credits / copyright / the usage terms / license.

    Depending on how you deliver the software, you can put these terms inside the source-code and deliver it with the javascript files directly.

    If you create binary version of the software (e.g. pack/compress the software), those comments then might be removed. You are still able to add those again on top of the file.

    jQuery is pretty generous here btw, for example for the files that are delivered by nobody less than Google Inc., You find this:

    https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js

    /*! jQuery v1.7.2 jquery.com | jquery.org/license */
    (function(a,b){function cy(a) ...
    

    So Google gives “Credit” by saying what software that file is (jQuery v1.7.2), from where they obtained it from (jquery.com) and they provide the licensing information (jquery.org/license). Legally this might not be enough if you talk with your lawyer, however, in this case I assume this is an accepted procedure by the jQuery project.

    But this does not mean that this would be okay for John Anderson III, George McGinley Smith, and Robert Penner (and perhaps Blair Mitchelmore). The later btw. uses the WTFPL License which is considered a joke. It normally is not accepted and raises needless questions, so again, the author who packages up 3. should probably do same as the cloudstack folks did.

    A Webmistress’ Conclusion

    That software we normally link in <script> tags in <head> (and less often <body>) is best distributed packed to spare us needless traffic. That means the source-form of the file is altered and often the comments containing the copyright and licensing information is missing. But often these licenses require us to provide that information.

    It looks promising to just make use of another semantic HTML feature to provide copyright information: The copyright link you can place into the head next to script tags:

    <link href="contact.html#credits" rel="copyright" title="Licensing Information">
    

    or for the ones of us in the HTML 5 camp:

    <link href="contact.html#credits" rel="license" title="Licensing Information">
    

    This is an example providing another hyptertext markup language document that lists the used software and gives its licensing information in human readable form (compare). Please consult the HTML reference of your choice to learn more about the <link> tag.

    Hope this is helpful. I don’t want to prevent you to go to a lawyer to further clarify this, however, your lawyer might not even add more to this: Credits page, provide license information and a link to that page from every page that links as well the software. What can one want more? And I bet, if you do this, you are one of the more good citizens out there.

    IANAL just a software developer, so thank you for asking for feedback, I could have been one of those other developers and naturally I prefer it if somebody asks instead of not doing anything. I would say as a developer: The most important thing is that users of my software learn about the rights they have with the software they use. Thank you for asking how to make that possible!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website that contains links to other sites only. They link to
The website contains images. These images can be ranked. When an image is ranked,
This website contains different Url, But i want my application should vist urls only
I have a website that contains items, which have an ID and title. They
I use the Facebook comment plugin on my multilingual website. My website's URL contains
I have a website which contains a large (and wide) table. The table is
I have a website that contains company profiles. These profiles have many pages within
I got a website which contains a lot of projects with each project containing
I have a website that contains a list of articles. I want to include
I am using a website which contains a gridview for view details of Product

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.