Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Bubbles not moving(floating) while scrolling page Reply To: Bubbles not moving(floating) while scrolling page

#210584
Shikkediel
Participant

Another jQuery conflict it seems… easiest workaround would probably be to give this a go instead :

http://pastebin.com/PgYjf6HD

Can’t test it live but if it worked locally, this should as well.
Or wrap your function in one of these :

jQuery(function($) {

    // use string character as usual
});

Looks like you’re missing a DOM ready listener in any case – it will normally be executed before the document has been read when a script is placed inside the <head> tag.