Profile popups in JavaScript or Jquery -
new web design , working on project charity , looking add profile popup div's or windows preferably 1st... not sure whats best way go it!!
can advise please.
thank
your question little vague, beginners in web design, might want use iframe. html tag creates inline panel/window thing , pretty easy use. looks this:
<iframe src="profile.html" width="300" height="300"> <p>text here displayed on browser doesn't support iframe</p> </iframe>
i have not played around them can pull off showing profile little bit of jquery this:
$(document).ready(function(){ $(".avatar").mouseenter(function(){ //the .avatar element of place person clicks on profile or whatever. $("iframe").fadeto("fast",1); }); $("iframe").mouseleave(function(){ $("iframe").fadeto("fast",0); }); });
something should work. i'm not sure looking hope helped.
useful link