How do I give a jQuery Element a fixed position on the page. In other words absolute positioning of a jQuery element.
Posted
by
Stephanie
on Stack Overflow
See other posts from Stack Overflow
or by Stephanie
Published on 2010-12-29T18:47:42Z
Indexed on
2010/12/29
18:53 UTC
Read the original article
Hit count: 284
<script type="text/javascript">
$(function() {
$('a.StackedSystem').hover(function(e) {
var html = '<div id="StackedSysteminfo">';
html += '<div id="StackedSystemTxt">
ETTER utilizes the latest technologies for our booster systems, including PLC-Based controls complete with touch-screen panel user interfaces (HMI). The base package includes the gray scale screen as shown; color screens are also available. The PLC not only provides a cleaner interface but provides additional features like automatic logging and time/date stamping of all alarms and shut-downs. Great for trouble-shooting.';
html += '';
$('body').append(html).children('#info').hide().fadeIn(400);
}, function() {
$('#StackedSysteminfo').remove();
});
});
© Stack Overflow or respective owner