jquery - how to use callback to apply them on newly cloned objects -
well using quicksand, want use tool tips in it, facing problem due callback code not able implement, place quicksand present , told tooltips usage it, has not explained in detail expects people know jquery before using it. http://razorjack.net/quicksand/docs-and-demos.html code saying use this
$("#content").quicksand($("#data > li"), { duration: 1000, }, function() { // callback function $('#content a').tooltip(); } );
i don't know place code , how don't know jquery, , if code place in tooltips script place in , how, e-g might use 1 http://www.sohtanaka.com/web-design/...ement-tooltip/ in code put above code. if not possible above tooltip ready use tooltip can display picture in it. reading , giving me time, please me know jquery kings not issue, issue me dumb. lol take care.
you can place jquery within html <script>
tags.
e.g.
<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function() { //jquery code can go here.... $("#content").quicksand($("#data > li"), { duration: 1000, }, function() { // callback function $('#content a').tooltip(); }); }); </script> </head> <body> </body> </html>
Comments
Post a Comment