Forum Discussion

smithme's avatar
smithme
Brass Contributor
Feb 26, 2019

How To: Add unique ID to div

I am creating my first simple web part that will modify a div. I want to find the div by giving it a unique ID. As it is possible for a user to put more than one of my web part on a single page, how ...
  • FedericoPorceddu82's avatar
    Feb 26, 2019

    Hi smithme 

    sure you can create and assign a Guid 

    var guid: Guid = Guid.newGuid();

    importing

    import { Guid } from '@microsoft/sp-client-base';

    Cheers,

    Federico

Resources