html
25 TopicsInput type="time" + Datalist
The list of times in HTML INPUT type="time" with a Datalist does not open If the list appears at the top of the INPUT element. If it appears at the bottom, it's OK. Code example : <div style="position:absolute;bottom:0"> <h3>if you choose OTHER on this element at the bottom, when the dataList opens above, nothing is displayed</h3> <input type="time" list="times2" /> <datalist id="times2"> <option label="Minuit">00:00</option> <option>06:00</option> <option label="midi">12:00</option> <option>15:00</option> <option label="gouter">16:00</option> <option>17:00</option> <option>18:00</option> <option>18:00</option> <option>18:00</option> <option>18:00</option> <option>19:00</option> </datalist> </div>436Views0likes0CommentsHow to use Azure Maps to Build a Taxi Hailing Web App
Learn how simple it is to set up an Azure Maps Resource account and quickly create applications that have beautiful maps that can be used in a range of solutions. In this tutorial we are going to create a simple and fast taxi hailing Web application with only HTML, CSS and Vanilla JavaScript.3KViews0likes0CommentsHow to add files from other directory to IIS-localhost
Hi IIS Community, Multiple HTML files reside at a different path, say `C:/some-name/documents/GitHub/Directory`, not in the `inetpub\wwwroot` directory. So how can I still use or render those files in localhost? I tried creating a virtual directory from the manager but failed to do the expected result. Every time I face "HTTP Error 500.19 - Internal Server Error" Please help me with the same. Cheers, Rishu Mehra376Views0likes0CommentsWeb Development for Beginners: A new Learning Path on Microsoft Learn
There are roughly 16 million developers in the world today. Roughly half of those, 8 million are web developers. Web development is therefore a good skill to have as you are looking to land that first job and build a career in tech. But where do you begin to learn all that? With this pathhttps://docs.microsoft.com/en-us/learn/paths/web-development-101/. It covers everything from HTML, CSS, JavaScript to Accessibility.15KViews0likes2CommentsCreating Image Maps or something similar
Anyone familiar with Image Map? I'm having this project of trying to create an image map of a real map location and then each zip code would have different link/page in that same image. I'm just curious if it's possible to do it here in SharePoint as I've seen people doing it but in HTML.2KViews0likes1CommentHow to open or display in a browser tab a web archive saved in OneDrive.
I can save the web archive(folder with index and all associated files.. images, linked pages etc) to my desktop and click on the index.html file and the browser happily displays it.. all formatting, images, links to other pages all work fine. If I move this same folder to OneDrive it only lets me view and edit the files as text 🤷🏾:male_sign: Is there a way to get oneDrive to display the html files, or it there another tool I should be using. Note: I have a hundreds of these that would be perfect to access from oneDrive list.. give links to others to view elsewhere in Sharepoint etc.. but oneDrive will not display them..2.9KViews0likes3CommentsHTML code embed into SharePoint Online page
A colleague of mine is using a HTML code on the current SharePoint on-prem 2013 environment to place svg graphics onto another SVG image. Is it still possible to embed an HTML code into a SharePoint Online page? <!DOCTYPE html> <html> <body> <!-- insert width/height in line below to define picture size, makes sense to align with size of background image --> <svg id="screenshot1" width="500" height="400" xmlns="http://www.w3.org/2000/svg"> <!-- define path to background image below --> <image href="base-image.svg"/> <!--predefined marker symbols --> <symbol id="arrow-red-solid"><image href="./arrow_red_solid.svg"/></symbol> <symbol id="arrow-red-outline"><image href="./arrow_red_outline.svg"/></symbol> <symbol id="arrow-orange-solid"><image href="./arrow_orange_solid.svg"/></symbol> <symbol id="arrow-orange-outline"><image href="./arrow_orange_outline.svg"/></symbol> <symbol id="arrow-blue-solid"><image href="./arrow_blue_solid.svg"/></symbol> <symbol id="arrow-blue-outline"><image href="./arrow_blue_outline.svg"/></symbol> <!-- use picture markers, shapes, text as needed, follow SVG syntax https://developer.mozilla.org/en-US/docs/Web/SVG/Tutorial --> <!-- shape positions are expressed in pixel where the origin is the top left corner of the image, x=left-right, y=top-bottom --> <line x1="10" x2="50" y1="110" y2="150" stroke="black" stroke-width="5"/> <rect x="360" y="230" width="100" height="20" style="fill:none;stroke:blue;stroke-width:2" /> <rect x="320" y="300" rx="5" ry="5" width="100" height="20" style="fill:none;stroke:orange;stroke-width:2"/> <circle cx="50" cy="50" r="10" style="fill:none;stroke:red;stroke-width:2"/> <ellipse cx="150" cy="50" rx="30" ry="10" style="fill:none;stroke:red;stroke-width:2"/> <use x="80" y="180" href="#arrow-red-solid" /> <use x="60" y="250" href="#arrow-red-outline" /> <use x="100" y="200" href="#arrow-blue-outline" /> <use x="120" y="220" href="#arrow-orange-outline" /> <text x="380" y="220" font-size="24" fill="blue">Text1</text> </svg> </body> </html> Right now I'm not able to do that with the "embed" webpart. ThanksSolved12KViews0likes6CommentsLoad predefined data from columns and update field with possible selection with Javascript
I am struggling with piece of code. I am working on SharePoint 2013 and I am trying to set 2 fields fixed when creating a new item in list. All 3 fields are lookup columns, but the red highlighted fields I want to set as fixed and the yellow highlighted field is conditioned by the fieldVyberova_Skupina_SluzbaAlsoVyberova_Skupina_Sluzbais conditioned by the fieldVyber_Oblast I used the part of the code below, the fields are fixedVyber_OblastandVyberova_Skupina_Sluzbabut third column is not updated. function nastavSluzba(){ $('#Produktova_Skupina_Sluzba').find('select').val('Hypotekárne úvery'); $('#Vyber_Oblasti').find('select').val('Úverové produkty pre FO') $('#tableNapoveda').remove(); $("#Vyber_Oblasti").find('select').attr("disabled", true); $("#Produktova_Skupina_Sluzba").find('select').attr("disabled", true); $("#Vyber_Oblasti").find('select').css({"background-color": "white","color": "black"}); $("#Produktova_Skupina_Sluzba").find('select').css({"background-color": "white","color": "black"}); var allOptions = document.querySelectorAll("[title=Vyber_Oblasti] option"); [].some.call(allOptions, function(option) { if (option.innerHTML == "Úverové produkty pre FO") { option.selected = "Úverové produkty pre FO"; return true; } }); var allOption = document.querySelectorAll("[title=Produktova_Skupina_Sluzba] option"); [].some.call(allOption, function(option) { if (option.innerHTML == "Hypotekárne úvery") { option.selected = "Hypotekárne úvery"; return true; } }); Can you help me make sure that the third field is loaded automatically and that the user can select an option that falls underProduktova_Skupina_Sluzba?643Views0likes0CommentsOnly MS Teams Join URL by entering the meeting ID
Hi, Why doesn't MS Teams have a pure website for participating in meetings with HTML5 without prompting to run or install the desktop app .exe but only by entering the meeting ID?GotoMeeting and Zoom can do that... for example: https://app.gotomeeting.com https://zoom.us/join Access is particularly important for work platforms that only have a Chromium-based browser available, do not allow installation and can still be accessed comfortably. We want to allow our users to use it, but we are not allowed to setup. It's only about web participation using a meeting ID and not copying the email invitation from Outlook, for example. Please provide a website similar to GotoMeeting. Many Thanks.1.3KViews0likes1Comment