Go Back   CodingForums.com > :: Client side development > JavaScript programming > Ajax and Design

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 03-06-2011, 09:50 PM   PM User | #1
selenin
New Coder

 
Join Date: Jun 2010
Posts: 17
Thanks: 1
Thanked 0 Times in 0 Posts
selenin is an unknown quantity at this point
Question Image title tag

Hi
I want to make like a title tag, but it has to show an image. Don't know how that is called but have seen it already. Not a lightbox, like you show the title of a link it has to show an image and detailled information...
selenin is offline   Reply With Quote
Old 03-06-2011, 10:29 PM   PM User | #2
harbingerOTV
Senior Coder

 
Join Date: Jan 2005
Location: Memphis, TN
Posts: 1,765
Thanks: 8
Thanked 123 Times in 121 Posts
harbingerOTV will become famous soon enough
like this? http://plugins.learningjquery.com/cluetip/demo/

or do I not fully understand what you need?
__________________
Stop making things so hard on yourself.
i is tugbucket :: help raise tugburg :: Whitehaven Kiwanis
harbingerOTV is offline   Reply With Quote
Old 03-06-2011, 11:20 PM   PM User | #3
bullant
Banned

 
Join Date: Feb 2011
Posts: 2,699
Thanks: 13
Thanked 395 Times in 395 Posts
bullant is on a distinguished road
something like this?

Code:
 
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <title></title>
        <style type="text/css">
            #myLink {
                position: relative;
                width: 160px;
            }
            #myLink div {
                position: absolute;
                top: 30px;
                left: 30px;
                border: 1px solid red;
                padding: 10px 10px 10px 10px;
                display: none;
                width: 300px;
            }
            #myLink:hover div {
                display: block;
            }
        </style>
    </head>
    <body>
        <div id="myLink">
            <a href="">my link to somewhere</a>
            <div>Place title content in here</div>
        </div>
    </body>
</html>

Last edited by bullant; 03-06-2011 at 11:40 PM..
bullant is offline   Reply With Quote
Old 03-06-2011, 11:59 PM   PM User | #4
VIPStephan
The fat guy next door


 
VIPStephan's Avatar
 
Join Date: Jan 2006
Location: Halle (Saale), Germany
Posts: 7,601
Thanks: 5
Thanked 865 Times in 842 Posts
VIPStephan is a jewel in the roughVIPStephan is a jewel in the roughVIPStephan is a jewel in the rough
Just for the records: This is a title tag: <title>, an opening tag, to be precise, and it always goes together with a closing tag (</title>).

The following is called a title attribute: <a title="text here"> – a significant difference.
__________________
Don’t click this link!
VIPStephan is offline   Reply With Quote
Old 03-07-2011, 12:03 AM   PM User | #5
bullant
Banned

 
Join Date: Feb 2011
Posts: 2,699
Thanks: 13
Thanked 395 Times in 395 Posts
bullant is on a distinguished road
yep I was confused as well at first when I read the op, but when I saw
Quote:
Originally Posted by selenin View Post
Not a lightbox, like you show the title of a link it has to show an image and detailled information...
I am assuming the op means title attribute and hence my question

Quote:
something like this?
bullant is offline   Reply With Quote
Old 03-07-2011, 12:32 AM   PM User | #6
selenin
New Coder

 
Join Date: Jun 2010
Posts: 17
Thanks: 1
Thanked 0 Times in 0 Posts
selenin is an unknown quantity at this point
Thanks, sorry I meant attribute, I'm not very well with these expressions. I'll try them tomorrow, too tired tonight. Found as well a nice one, jquery tooltip. Yeah but the dreamworld is waiting...
selenin is offline   Reply With Quote
Old 03-07-2011, 12:39 AM   PM User | #7
bullant
Banned

 
Join Date: Feb 2011
Posts: 2,699
Thanks: 13
Thanked 395 Times in 395 Posts
bullant is on a distinguished road
no problem
bullant is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:05 PM.


Advertisement
Log in to turn off these ads.