By Anonymous (not verified), 14 June, 2016 HTML JS communication between iframes and Cross-document messaging Tags JavaScript Example : For example in the top window (Parent): (the_iframe.contentWindow.postMessage('data', 'domain');)
By editor, 14 June, 2016 SEO - URL Formatting Tags Drupal 8 SEO Option 1. Use the drupal 8 native URL Field option. Option 2. Module PathAuto - Configure the path settings and Path pattern -> NOTE : Do not change the path
By editor, 14 June, 2016 CSS block formating contexte / CSS Box Model Tags CSS Theming Tuto English : CSS Box Model : http://www.w3schools.com/css/css_boxmodel.asp CSS display Property - http://www.w3schools.com/cssref/pr_class_display.asp
By editor, 13 June, 2016 Read a Webpage, Image, File or any url using Drupal 8 httpClient Tags Drupal 8 Code Use drupal 8 httpClient to read URL. // Drupal httpClient. $http = \Drupal::httpClient(); $url = 'http://example.com/'; Example: $options = array(); $result = $http->request('get', $url, $options);
By editor, 13 June, 2016 Correct a broken HTML file or a HTML String Tags PHP Code Drupal 8 Utility Example 1 : With DOMDocument: (Fast (0.0002 sec) but can have php warning)