Loading....
Recent Article links:

Forum

You must be logged in to post Login

Search Forums:


 






tag result not in position

No Tags
UserPost

February 16, 2010


francisco

I've center the image in the div, but tag result not in position.

How can resolve this problem?

February 16, 2010


admin

to show only tags on mouse over

you need set
                showDescription : true,               
                showTagOnImage : false,  
 

example

var taghim1 = new tagging(
            'taghim1',                            // NAME OF VARIABLLE
            'xxxxxxxxxxxxxxxxxxxxxxxxxxx', // REGISTER CODE (INSERT YOUTS)
            'cropp1',                             // HTML ID OF IMAGE
            2,                                    //IMAGE NUMBER. SHOULD BE UNICUE FOR EVERY IMAGE
            {
                ajaxRequestURL : 'tag.php',     // PATH TO PHP-SCRIPT
                ajaxReturnID : 'ret1',            // DIV TO RERURNED TAGS
                style : 'mikkey1_',                // STYLE PREFIX
                showDescription : true,                // ON/OFF DESCRIPTION FIELD
                showTagOnImage : false,  
 
                displayOnInit : false,   
                autoInit : false,                // ON/OFF AUTOMATIC SHOWING
                minWidth : 50,
                minHeight : 50,                    // ON/OFF ZOOM MODE
                allowNamelistMode : true,
                showDivOnTagging : 'tag1ShDiv',
                zoom : true,

                zoomParameters : {
                        "1x" : { 'w' : 50, 'h' : 50 },

                        "2x" : { 'w' : 100, 'h' : 100 },

                        "3x" : { 'w' : 150, 'h' : 150 }
                        }
            }
             );

   

    taghim1.setOption( 'namelistAltEmail', true );
   
    taghim1.setOption( 'enableReenterer', true );
    taghim1.addNamesList( { <?=implode( ",", $users )?> } ); //INSERT FRIENDS LIST TO SCRIPT
    taghim1.addNameToList( 15, 'Serg' );                 // YOU CAN CHANGE OR INSERT MORE USERS
    taghim1.showTags();                                 // SHOWING TAGS

No Tags