Re: How Build Html form ? Programming Web Development by Dani I'm not exactly understanding your question. I see you have an HTML form here in this HTML code. What is not working about it? You need to specify the action="#" to be a URL that will process the form. How Build video-player in html And css ? Programming by Kirubel_2 …="initial"; } } </script> <script src="../js/script.js"></script> <script src="…;../js/img.js"></script> </body> </html:… How Build Html form ? Programming Web Development by Kirubel_2 …;title>Comment</title> <script src="js/jquery.js"></script> <link rel="… How can I create a meme generator using js canvas? Programming Web Development by FarrisFahad I am trying to create a meme generator similar to imgflip.com I know javascript but not sure how to implement this. I want users to be able to move text around the canvas using mousemove event listener. But I am not sure if they are moving the text on the canvas or are they creating an overlay div then transform the dimension's to canvas? Re: How can I create a meme generator using js canvas? Programming Web Development by rproffitt As I read https://github.com/jacebrowning/memegen it looks more capable and complete than the other site you mentioned. To me I'd use this unless the goal is to write it from scratch. Re: How can I create a meme generator using js canvas? Programming Web Development by jessicaboland Creating a meme generator sounds like a fun project! To allow users to move text around the canvas using the mousemove event, you'll want to directly manipulate the text within the canvas rather than using an overlay div. See Example: const canvas = document.getElementById('yourCanvasId'); const ctx = canvas.getContext('2d');… Re: How can I create a meme generator using js canvas? Programming Web Development by kimnancy Implement text movement on the canvas using mousemove. Update text position within the canvas for efficiency; avoid overlay divs. Aligns with the graphical nature of meme generation. Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book … the full code from the file `lightgallery.min.js` here is the pastebin link to it https://…v4qKbwVd `https://www.kupisi.mk/vendor/lightgallery/lightgallery.min.js` There are three files in the lightgallery folder …`lightgallery.min.js` `lightgallery.umd.js` `lightgallery.es5.js` Please take a look and tell … Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani …link to the javascript file https://www.kupisi.mk/js/dz.carousel.js at the bottom of the page. When I… can make some other tweaks as well. dz.carousel.js **currently** looks like this (I passed it through a… JS beautifier to format the code): var MoonCartCarousel = function() { var … Re: How to Code a Load More Button? Digital Media Digital Marketing Search Engine Strategies by Dani … or on scroll. Therefore, what Google essentially sees with this JS running is the first page of results, and links to…possible that they think they are hidden by default via JS because they are behind a menu or navigation that …probable thing is that Google is familiar with Infinite-Scroll JS, since it's a super popular technique used by millions… Re: AirTM API: How to Build a Form? Programming Web Development by pritaeas https://docs.airtm.com/purchases-payins/create-purchase You can choose PHP in the dropdown above the sample code. That way you can see what your PHP should contain. Re: Seeking Help for Creating a Circle Generator Tool Programming Game Development by jackwells …"></div> <script src="script.js"></script> </body> </html… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by toneewa …="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script> function benchmarkJQueryReady… Re: DomContentLoaded vs jQuery Ready fn Programming Web Development by jkon … copy from https://code.jquery.com/jquery-3.7.1.js this part: // The ready event handler and self cleanup method… Re: Improve HAVING BY performance Programming Databases by Dani … fully loaded, meaning CSS files downloaded and rendering the HTML, JS files downloaded and executed, etc., in 2s or less. That… Re: Improve HAVING BY performance Programming Databases by Biiim … & frontend but i'm still just learning despite using JS for around 17 years. I currently am looking at storing… Re: How Build video-player in html And css ? Programming by Kirubel_2 body{ /* background: url(../img/w11.png); */ background: url(../img/m.jpg); background-size: cover; background-repeat: no-repeat; margin: 0; padding: 0; height: 101vh; overflow-y: hidden; } .container button{ background: transparent; … Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book Anyone can help on this problem? Re: How to disable the automatic swipe effect on the product page? Programming Web Development by kimnancy I recommend checking the lightgallery documentation or reaching out to their support forum for assistance with disabling the automatic swipe effect on your product page. It might provide you with specific guidance on the code modification you're looking for. Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book @kimnancy I tried contacting them for over 2 weeks... Their customer support is non existent P.S i still have the same problem... i still cannot disable the auto swiping effect... Tried to learn the lightgallery docs. but cant find relevant info Re: How to disable the automatic swipe effect on the product page? Programming Web Development by rproffitt This is not an offer of edits or support. slideDelay at https://www.lightgalleryjs.com/docs/settings/ looks like something I'd look to add or change. Sometimes website owners don't code so they end up a little frustrated. Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book @rproffitt I tried it with various higher numbers than 0 and it did no helped... How can this be so big problem i don't understand :/ The products with videos in them are hurting my SEO... ![Screenshot_2024-03-21_093154.png](https://static.daniweb.com/attachments/4/b8ebec361fed813b05ae54827e38e9c6.png) Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Read a Book WOW finally solved! Thank you so much DANI !! Removing the autoplay from the `// Product Gallery Swiper1 ==` solved the problem! Thank you so much! Here is a product page with a video https://www.kupisi.mk/product/за-дома/глава-за-туш-со-филтер-за-прочистување-вода/41 Re: How to disable the automatic swipe effect on the product page? Programming Web Development by Dani Glad you were able to get it working. I am seeing the product page with a video you're referring to. The video does not autoplay. Are you wanting the video to autoplay? (I don't think it should. It's a bad user experience.) Is Google not considering these pages as having video content? dropdown.js (Bootstrap 2) max height? Digital Media UI / UX Design by mmcdonald …'m looking to restrict the max-height of dropdown.js but can't - for the life of …scroll;` `max-height: 450px;` situation. Checkout the dropdown menu in this example: http://jsfiddle.net/S3XLH/, you…'ll see that the menu item named 'dropdown' is far too big for the page.… How can I limit the height of dropdown menu? Thanks for any help - I … Re: dropdown.js (Bootstrap 2) max height? Digital Media UI / UX Design by cereal Hello, try with: .dropdown-menu { max-height: 450px; overflow-y: auto; overflow-x: hidden; } Source: * https://github.com/twbs/bootstrap/issues/1989 Re: dropdown.js (Bootstrap 2) max height? Digital Media UI / UX Design by mmcdonald Brilliant Cereal thank you :) I did figure this out about 2 hours ago using `overflow: scroll;` and `max-height: 450px`; but was simply applying it to the wrong element, either due to Bank Holiday alcoholism or sheer tiredness! haha You're right however and that's a good find. Kudos! Chained Dynamic Dropdown list using Codeigniter Programming Web Development by amrak … ), 'Dagana' =>array( 'Dagapela'=>array('meog','teog'), ) ); //js/dropdown.js $(document).ready(function() { $("#dzongkhag").change(function() { $("#geog…get any list or values in my other two dropdown list, Where did I go wrong in my code… dropdown menu Programming Web Development by attism … the PHP file I load a .js file and a .css file. The .js file is: [CODE]var DDSPEED =…); } // cancel the collapse if a user rolls over the dropdown // function cancelHide(id){ var h = document.getElementById(id +…ddSlide(c,1)},DDTIMER); } } // incrementally expand/contract the dropdown and change the opacity // function ddSlide(c,d){ var … Re: dropdown menu Programming Web Development by attism … duplicated. I would want that in the "More..." dropdown to show the the categories that have no space in… the menu, and the others in the "More..." dropdown.