(jQuery introduced to me by Sean Barton)
update – be sure to use the “migrate” with most plug-ins ! 2013-01-17
getting jquery
=tooltips 2012-08-30=
http://jquery.bassistance.de/tooltip/demo/
http://docs.jquery.com/Plugins/Tooltip
http://swip.codylindley.com/tooltipDemo.html
= 2009-09-26 ===
$(document).ready(function(){
$(’#headerDiv’).css(“height”,“250px”); // set this div css height to 250px
$(’#toolBar’).css(“left”, $(’#headerDiv’).offset().left );
// set the toolBar div left position to be the same
// as the headerDiv one
});
div scrollbars
div scrollbars
div scroll
dragable box ==
dragable box
dragable and resize box
dropdowns ===
droppy drop down menu
superfish – the replacement for suckerfish
dropdown examples
mcDropdowns
accordian
stu nickols
sexy drop down
suckerfish menu
examples ========
38 examples
nople – 50 examples
noupe – 51 examples
internal popup window ====
jqModal example
simple example – possibly the best one
abeautifulsite.net
another jqModal example
accordian ==========
accordion style menu
another accordion style menu
hoverIntent ====
http://cherne.net/brian/resources/jquery.hoverIntent.html
context menu plug-in – for on-line editing!
http://abeautifulsite.net/notebook/80
example
plug-in source and examples:
http://www.templatelite.com/100-popular-jquery-plugins/
18 examples – thanks kim baker – 2009-10-22
lightbox bal – interesting example of sliding photos from Jim Hammond – 2009-11-23
jQuery ajax======
load into variable
$.get(‘http://blah.blah/rpc.php?o=’ + id, doSomethingWithData);
function doSomethingWithData(data) {
alert(data);
}
END