Create Link In Javascript Text

i want just more help i want to create link on some text inside :
Code (Javascript):

samji.setFullName(";FDÒ\nDFGAF>"); 

i want to create html link on ;FDÒ\nDFGAF> which is name of person in Gujarati language please help me

With that line of code alone, I’m afraid it’s not really clear which role that samji object plays here… but the general way to create a link goes like this:

var link = document.createElement('a')

link.href = 'https://something.com'
link.textContent = ';FDÒ\nDFGAF>'

// Append the link to a parent element, 
// for example the body:
document.body.appendChild(link)
1 Like

samji is objact of diagram node

here is some code:

    var samji = new OrgChartNode(diagram, ladha);
    samji.setBounds(new Rect(95, 135, 10, 15));
    samji.setTextPadding(50);
    //samji.setTitle("Media");
    samji.setFullName(";FDÒ\nDFGAF>");
    //samji.setImageLocation("ad.png");
    samji.resize();
    diagram.addItem(samji);

here is my full project which is for family tree inside website :slight_smile: download

Well that is indeed some crucial information. ;-) I think I see what you mean now, but I’m afraid I’m not familiar with that library… also your download link is just plain text.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.