yb007
yb007

Reputation: 1377

jquery to make a div floating at the bottom right corner

Hello i am relatively new to jquery but i like it, was wondering if i can have a floating div at the bottom right corner of the page(using jquery) so that it regains it's position even when we scroll down the page. Thereafter i need to pass a link through an image in the div to a specific anchor in the page. It should be short and simple. Although it can be accomplished using css but ie does not support position:fixed so only jquery

Upvotes: 0

Views: 1444

Answers (1)

easwee
easwee

Reputation: 15895

Position fixed can be achieved in IE even without jquery: http://tagsoup.com/cookbook/css/fixed/

Otherwise this works too: http://plugins.jquery.com/project/FixedIE

Upvotes: 3

Related Questions