I am looking for a way to implement the jquery code at
http://www.bloggerwhist.com/2012/11/add-bottom-scrolling-popup-subscription.html
...into my drupal page...

I want to have a popup dialog in the corner of the page which will allow the user to connect to my social sites (facebook, twitter and G+)
I have rather good knowledge of php and html and theme development in drupal, but when it comes to java snippets, I have no idea where to incorporate them

Any help would be appreciated!

Comments

jacauc’s picture

Bump...

jaypan’s picture

How would you include Java in a regular page? And how do you make Java interact with jQuery? And why would you even use Java in the first place?

Contact me to contract me for D7 -> D10/11 migrations.

chetan-singhal’s picture

you can accomplish this using javascript.

initialliy your popup div to hide.
on document.ready on scroll event you can show this div

jQuery(document).ready(function(){
	jQuery(document).scroll(function(){
             jQuery("yourdiv").show();
       });
});

chetan

manish.2184’s picture

download module from given below link
http://www.filedropper.com/jqbottom

after you will install this module a block will appear.
assign this block to footer reason.

you will get jquery bottom scrolling popup with in your site.

jacauc’s picture

Thanks @manish.2184!!

I will try this out and report back!

jacauc

jacauc’s picture

Works like a charm, thank you very much!

Mentor.37’s picture

Hi, could me too have this module?