Giter Club home page Giter Club logo

Comments (6)

jgermade avatar jgermade commented on August 19, 2024

Hi @RongBranovate, this is because library name is not jQuery.

You may solve this just by adding the this line before jquery-injectcss:

<script type="text/javascript">window.jQuery = jqlite;</script>

Thanks for your feedback!

from jqlite.

RongBranovate avatar RongBranovate commented on August 19, 2024

thanks! solved it!

from jqlite.

RongBranovate avatar RongBranovate commented on August 19, 2024

Wait, now that i'm using the plugin im getting :

Uncaught TypeError: jQuery.extend is not a function

from jqlite.

jgermade avatar jgermade commented on August 19, 2024

It's normal

$.extend is not provided by jqlite, jqlite is focused in DOM handling.

extend feature is provided by jstools/utils

To solve this problem there are some solutions, just need to implement extend method, for example:

adding your own method:

<script type="text/javascript">
$.extend = function () {
    var dest = [].shift.call(arguments),
      src = [].shift.call(arguments),
      key;

  while( src ) {
    for( key in src) {
      dest[key] = src[key];
    }
    src = [].shift.call(arguments);
  }

  return dest;
}
</script>

or maybe extending $ with all jstools/utils methods:

<script type="text/javascript" src="vendor/jstools/utils.js"></script>
<script type="text/javascript"> $utils.extend($, $utils); </script>

if you are using lodash or underscore, you can do:

<script type="text/javascript"> $.extend = _.extend; </script>

from jqlite.

RongBranovate avatar RongBranovate commented on August 19, 2024

Hi @jgermade !
thanks for the reply,
i've used your function here, now getting :
Uncaught TypeError: jQuery(...).appendTo is not a function

which i mannaged to change, but it seems there are more problems, i think i'll drop the other library...
thank for the help!

from jqlite.

jgermade avatar jgermade commented on August 19, 2024

hi again @RongBranovate, .appendTo() is also included to jqlite

thanks again!!

from jqlite.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.