ASP.NET - need to display text instead of images in my forum applcation
Asked By mani on 23-Jan-12 02:36 AM
hi..i am developing forum application..in that i am posting both some text and images in my editor tool..
after posting i am display in forum list..so when i display that text and image after posting , i need to display some other text instead of that posted image only than i need to mouseover and need to show that image in popup..
so how can i catch that image on page loading from that posted paragraph..????
Jitendra Faye replied to mani on 23-Jan-12 03:48 AM
You can simply use jquery for this-
$(".comment_div").hover(
function() { $(this).children(".comment_actions").show(); },
function() { $(this).children(".comment_actions").hide(); }
);
Try this and let me know.