iframe url Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/iframe-url/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 20 Feb 2014 07:47:00 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 iframe url Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/iframe-url/ 32 32 176351444 Passing URL to Iframe , Get and Set url to iframe using javascript in mscrm 2011 http://microsoftdynamics.in/2014/02/20/passing-url-to-iframe-get-and-set-url-to-iframe-using-javascript-in-mscrm-2011/ Thu, 20 Feb 2014 07:47:00 +0000 http://microsoftdynamics.in/2014/02/20/passing-url-to-iframe-get-and-set-url-to-iframe-using-javascript-in-mscrm-2011/ //Passing URL to Iframe function iffffff() {     var IFrame = Xrm.Page.ui.controls.get( “IFRAME_iframes” );     //url value will  be saved in Url variable     var Url = IFrame.getSrc();     alert(Url);     //add new url or add subs to the existing     var trget = Url + “/movie” ;     alert(trget);     //set new value to iframe     IFrame.setSrc(trget);     //test what is new url     var IFramee = Xrm.Page.ui.controls.get( “IFRAME_iframes” );     var Urls = IFrame.getSrc();...

The post Passing URL to Iframe , Get and Set url to iframe using javascript in mscrm 2011 appeared first on Microsoft Dynamics 365 Blog.

]]>
//Passing URL to Iframe
function iffffff() {

    var IFrame = Xrm.Page.ui.controls.get( “IFRAME_iframes” );
    //url value will  be saved in Url variable
    var Url = IFrame.getSrc();
    alert(Url);
    //add new url or add subs to the existing
    var trget = Url + “/movie” ;
    alert(trget);
    //set new value to iframe
    IFrame.setSrc(trget);
    //test what is new url
    var IFramee = Xrm.Page.ui.controls.get( “IFRAME_iframes” );

    var Urls = IFrame.getSrc();
    alert(Urls);
}




SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post Passing URL to Iframe , Get and Set url to iframe using javascript in mscrm 2011 appeared first on Microsoft Dynamics 365 Blog.

]]>
2836