File tree Expand file tree Collapse file tree 5 files changed +48
-4
lines changed
Expand file tree Collapse file tree 5 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 11
2- < script src ="../../../jquery-1.3 .2.js "> </ script >
2+ < script src ="../../../jquery-1.6 .2.js "> </ script >
33< script src ="../tools.tooltip.js "> </ script >
44< link rel ="stylesheet " type ="text/css " href ="style.css "/>
55
Original file line number Diff line number Diff line change 11
2- < script src ="../../../jquery-1.3 .2.js "> </ script >
2+ < script src ="../../../jquery-1.6 .2.js "> </ script >
33< script src ="../tools.tooltip.js "> </ script >
44< script src ="../tools.tooltip.dynamic.js "> </ script >
55
Original file line number Diff line number Diff line change 11
2- < script src ="../js/jquery-1.4.1 .js "> </ script >
2+ < script src ="../js/jquery-1.6.2 .js "> </ script >
33< script src ="../../src/tooltip/tooltip.js "> </ script >
44< script src ="../../src/tooltip/tooltip.slide.js "> </ script >
55
Original file line number Diff line number Diff line change 11
2- < script src ="../js/jquery-1.4.1 .js "> </ script >
2+ < script src ="../js/jquery-1.6.2 .js "> </ script >
33< script src ="../../src/tooltip/tooltip.js "> </ script >
44
55< style >
Original file line number Diff line number Diff line change 1+
2+ < script src ="../js/jquery-1.6.2.js "> </ script >
3+ < script src ="../../src/tooltip/tooltip.js "> </ script >
4+
5+ < style type ="text/css ">
6+ body {
7+ padding : 50px ;
8+ }
9+
10+ input {
11+ display : block;
12+ margin : 10px ;
13+ }
14+
15+ /* tooltip styling. by default the element to be styled is .tooltip */
16+ .tooltip {
17+ display : none;
18+ background : transparent url ('http://flowplayer.org/tools/img/tooltip/black_arrow.png' );
19+ font-size : 12px ;
20+ height : 70px ;
21+ width : 160px ;
22+ padding : 25px ;
23+ color : # fff ;
24+ }
25+ </ style >
26+
27+ < input type ="text " title ="The tooltip text #1 " />
28+ < input type ="text " title ="The tooltip text #2 " />
29+ < input type ="text " title ="The tooltip text #3 " />
30+ < input type ="text " title ="The tooltip text #4 " />
31+ < input type ="text " title ="The tooltip text #5 " />
32+ < input type ="text " title ="The tooltip text #6 " />
33+ < input type ="text " title ="The tooltip text #7 " />
34+ < input type ="text " title ="The tooltip text #8 " />
35+
36+ < script type ="text/javascript ">
37+ $ ( function ( ) {
38+ $ ( "input" ) . tooltip ( {
39+ events : {
40+ input : "mouseover,mouseout"
41+ }
42+ } ) ;
43+ } ) ;
44+ </ script >
You can’t perform that action at this time.
0 commit comments