The code shown is simple but to the point and it works. If you want to try something without using an array see this link https://stackoverflow.com/questions/227 ... hout-array
Joe
Search found 30 matches
- Sun May 08, 2022 5:39 am
- Forum: Off Topic Section
- Topic: Pulls up a random page, it works but is there a better way?
- Replies: 4
- Views: 2449
- Sat Apr 09, 2022 5:22 pm
- Forum: General Questions
- Topic: Html emails?
- Replies: 11
- Views: 5469
Re: Html emails?
I have spent months looking at emailing newsletters which are a good example of html emails. Many developers agree that to compile a newsletter and have all email programs display it as intended, is extremely difficult. There are a number of online options that offer html emails that you could use ...
- Thu Apr 07, 2022 8:30 am
- Forum: General Questions
- Topic: Clear form field
- Replies: 5
- Views: 2631
Re: Clear form field
Here is a code snippet that uses the value of the "No" select (which is 2) to hide all selected inputs. For each label and field you want to hide give it a class of no in item properties. Paste the following in a html frame and set frame type to Before </body> <script src="https://ajax.googleapis ...
- Wed Apr 06, 2022 5:29 am
- Forum: General Questions
- Topic: Roll Over href attribute
- Replies: 2
- Views: 1795
Re: Roll Over href attribute
You could enter #0 which is a link that doesn't take you anywhere. Entering # on it's own may, on some browsers, move the page to top.
Joe
Joe
- Sun Apr 03, 2022 5:44 am
- Forum: Off Topic Section
- Topic: Videocam security system/script
- Replies: 9
- Views: 5131
Re: Videocam security system/script
Try this search criteria embed ip camera into a web page and embed cctv camera into a web page
video for ip camera https://www.youtube.com/watch?v=djvhZ1w6qco
Joe
video for ip camera https://www.youtube.com/watch?v=djvhZ1w6qco
Joe
- Fri Apr 01, 2022 11:33 am
- Forum: General Questions
- Topic: align text
- Replies: 7
- Views: 3387
Re: align text
Can't you use the space bar on the first line to center the text
Joe
Joe
- Wed Mar 30, 2022 12:13 pm
- Forum: General Questions
- Topic: Reset disable field in the form
- Replies: 9
- Views: 3576
Re: Reset disable field in the form
Ok try this. Right click the "First Name" editbox > Object html > click Inside tag > enter
Hey Joe, there is no Enable when I set the add the onfocus Event
Code: Select all
" onfocus="document.getElementById('LastName').disabled=false;return false;"
- Wed Mar 30, 2022 5:17 am
- Forum: General Questions
- Topic: Reset disable field in the form
- Replies: 9
- Views: 3576
Re: Reset disable field in the form
In the first editbox Properties > Events > Add > onfocus > enable > yourSecondEditbox id
When the first edit box has an entry it will enable the second editbox. The reset button will do what it says and return a blank form, so don't use it.
Joe
When the first edit box has an entry it will enable the second editbox. The reset button will do what it says and return a blank form, so don't use it.
Joe
- Sun Mar 27, 2022 11:34 am
- Forum: Links and Navigation
- Topic: Link to a specific slide in carousel on different page?
- Replies: 3
- Views: 5342
Re: Link to a specific slide in carousel on different page?
Better late than never. I have a couple of hacks for this which work with the Bootstrap Carousel and the Slideshow: For both the Bootstrap Carousel and Slideshow on the page you want to link from: Link each image to External Web address and enter the page id and slide number in this format page2 ...
- Sun Mar 20, 2022 12:52 pm
- Forum: General Questions
- Topic: Disable print screen and screen capture
- Replies: 15
- Views: 4904
Re: Disable print screen and screen capture
It sounds like you need to partner with a DRM company, or onf their partners, eg. Google Widevine, Apple Fairplay, Microsoft Playready, Contus and I'm sure there are more.Google drive is good for small size of data Sharing
Joe
- Sun Mar 20, 2022 6:58 am
- Forum: General Questions
- Topic: Disable print screen and screen capture
- Replies: 15
- Views: 4904
Re: Disable print screen and screen capture
Perhaps you can use Google Drive which offers the features you want.
https://support.google.com/drive/answer ... -your-file
Joe
https://support.google.com/drive/answer ... -your-file
Joe
- Sat Mar 19, 2022 6:46 am
- Forum: General Questions
- Topic: Disable print screen and screen capture
- Replies: 15
- Views: 4904
Re: Disable print screen and screen capture
If javascript is turned off in the browser, will the script you added still work?
- Wed Feb 02, 2022 10:02 am
- Forum: General Questions
- Topic: can we make email page in wb
- Replies: 6
- Views: 5685
Re: can we make email page in wb
I use the free online version of Unlayer which will export the html as an index.html file and an images file. If you preview the message in edge you can get a decent conversion to save it as a PDF.
- Thu Jan 27, 2022 7:02 am
- Forum: General Questions
- Topic: Work around to enable audio when playing a video as page background
- Replies: 5
- Views: 1706
Re: Work around to enable audio when playing a video as page background
The only proper way is to provide the site visitor with a play button so they can chose to listen or not, and can play in a seperate window whilst the user browses. It's about the best you will achieve.
- Thu Jan 20, 2022 6:08 pm
- Forum: General Questions
- Topic: no explicit width and height Slide Show/carousel
- Replies: 4
- Views: 1578
Re: no explicit width and height Slide Show/carousel
Thanks for the feedback
- Wed Jan 19, 2022 6:24 pm
- Forum: General Questions
- Topic: no explicit width and height Slide Show/carousel
- Replies: 4
- Views: 1578
Re: no explicit width and height Slide Show/carousel
You could add a small amount of css to an html object (Type - Between <head></head>tags) and specify the size. <style> #indexSlideShow1_next img, #indexSlideShow1_back img{ width: 30px ; height: 30px ; } </style> In this example indexSlideShow1_next and indexSlideShow1_back are the div id's for the ...
- Thu Jan 13, 2022 1:18 pm
- Forum: General Questions
- Topic: Interacting with jQuery date picker
- Replies: 3
- Views: 1242
Re: Interacting with jQuery date picker
Instead of using flexible use overlay. Make it the same size as your other form elements. This will show as an editbox which you can use just like any other editbox. If there is something else you want to do with it, post back.
Joe
Joe
- Wed Jan 12, 2022 6:16 am
- Forum: General Questions
- Topic: Audio player (no download button)
- Replies: 3
- Views: 1673
Re: Audio player (no download button)
If you have selected Preload in the player, Samsung interprets this as download before play.
From Samsung Developers site - audio attributes:
"preload: Specify whether the application can begin downloading the media or its meta data before the media is needed for playback."
Joe
From Samsung Developers site - audio attributes:
"preload: Specify whether the application can begin downloading the media or its meta data before the media is needed for playback."
Joe
- Sat Jan 08, 2022 1:00 pm
- Forum: General Questions
- Topic: password question
- Replies: 2
- Views: 1295
- Sat Jan 08, 2022 11:48 am
- Forum: General Questions
- Topic: A shortcut to show an object
- Replies: 4
- Views: 1559
Re: A shortcut to show an object
I just want to have a secret key intended for the admin on one page (and only operated on the PC) that was only to display the login dialog box or to be applied to the various other needs. Paste the following jquery into an html object and set "Before </body>" in the object dropdown. <script ...
- Tue Jan 04, 2022 7:26 am
- Forum: General Questions
- Topic: background music
- Replies: 2
- Views: 1225
Re: background music
is it possible to insert a background music at the entrance to the site and which would continue even if we change the page? In the majority of cases autoplay will be blocked by browsers, or the users browser settings. From Mozilla.org: ".... playback of any media that includes audio is generally ...
- Sat Jan 01, 2022 6:39 am
- Forum: General Questions
- Topic: Puzzle over Unsafe web file names
- Replies: 13
- Views: 3722
Re: Puzzle over Unsafe web file names
For me, the images are flagged as being invalid. Maybe you did not publish all files? Note that you can also use 'Error Reports' to check for invalid files names. https://www.wysiwygwebbuilder.com/support/don_publish.png File naming conventions are to use lowercase without any special characters ...
- Thu Dec 23, 2021 11:25 am
- Forum: General Questions
- Topic: Light Box in Card with extern URL does not work
- Replies: 11
- Views: 3516
Re: Light Box in Card with extern URL does not work
Je souhaite trouver une solution pour ouvrir un lien vers une carte google à partir de cette fenêtre. I want to find a solution to open a link to a google map from this window. The link works for me and opens google map in a new tab in firefox. Google will not allow embeded maps to be displayed o ...
- Fri Dec 17, 2021 6:22 pm
- Forum: General Questions
- Topic: problem displaying initial value edibox with datatype date
- Replies: 6
- Views: 2270
Re: problem displaying initial value edibox with datatype date
Entering date means it's waiting for a date input. If you preview and click in the input, a calendar will appear. If you set it to text it will show the date you set. What is it that you are trying to achieve?
Joe
Joe
- Thu Dec 16, 2021 1:42 pm
- Forum: General Questions
- Topic: Radius for Light Box
- Replies: 11
- Views: 4497
Re: Radius for Light Box
If you don't mind removing the shadow, the following css will give you rounded corners with one or two borders; .fancybox-bg, #fancybox-wrap { display: none; } #fancybox-outer { /* border: solid blue 10px; */ border-radius: 35px; } #fancybox-content { /* border-color: black!important; */ border ...
- Sun Dec 12, 2021 6:56 am
- Forum: General Questions
- Topic: Question about weird text-Heading1-background
- Replies: 2
- Views: 1508
Re: Question about weird text-Heading1-background
The background and text color for text2 are both white (#FFFFFF), and the background for text1 is set to transparent.
Joe
Joe
- Thu Dec 09, 2021 5:10 pm
- Forum: General Questions
- Topic: Mediaplayer active during the various HTML files
- Replies: 6
- Views: 2336
Re: Mediaplayer active during the various HTML files
A simple way to accomplish this is to:
Replace the existing player with a button, text or image.
Place the audio player on it's own small page of about 300px x 200px.
Link the button to the player page and set target to "Open in a popup window.
Set position and size in settings.
Joe
Replace the existing player with a button, text or image.
Place the audio player on it's own small page of about 300px x 200px.
Link the button to the player page and set target to "Open in a popup window.
Set position and size in settings.
Joe
- Sun Dec 05, 2021 3:28 pm
- Forum: WYSIWYG Web Builder Tips, Tricks, Tutorials and Code Examples
- Topic: Captions below images in Carousel and Slideshow-Carousel Version 16
- Replies: 4
- Views: 4037
Re: Captions below images in Carousel and Slideshow-Carousel Version 16
I moved it, as to why the section you originally posted in is not for questions or problems it is for providing useful tips etc. I though it was a useful tip to get round a problem in WWB if someone wants captions below images. If you are saying that captions below images can be accomplished purely ...
- Sun Dec 05, 2021 1:52 pm
- Forum: WYSIWYG Web Builder Tips, Tricks, Tutorials and Code Examples
- Topic: Captions below images in Carousel and Slideshow-Carousel Version 16
- Replies: 4
- Views: 4037
Re: Captions below images in Carousel and Slideshow-Carousel Version 16
Pablo,
I'm a litlle confused as to why this post has been moved to General Questions when it's not a question, but a method about coding Captions?
Joe
I'm a litlle confused as to why this post has been moved to General Questions when it's not a question, but a method about coding Captions?
Joe
- Sun Dec 05, 2021 9:10 am
- Forum: WYSIWYG Web Builder Tips, Tricks, Tutorials and Code Examples
- Topic: Captions below images in Carousel and Slideshow-Carousel Version 16
- Replies: 4
- Views: 4037
Captions below images in Carousel and Slideshow-Carousel Version 16
Captions can be shown underneath Carousel images, and also underneath Slideshow images when in Carousel or Lightbox Gallery mode. Pagination is OK in Carousel but not in Slideshow. Works with multiple images on same slide as shown in demo which is set up as Youtube Playlists with manual index. Demo ...