Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

kennyv

Members
  • Joined

  • Last visited

Everything posted by kennyv

  1. I misnamed the function should have been checkForm(tform) Normally what one does is put all Form checking logic within 1 function, like checkForm(tform). That way when the user clicks the button to Submit the form all of the form elements will be checked within that one function. On your button used to submit put an onclick to checkForm(tform). Normally what I do is define the button is this way: <input type="button" onclick="checkForm(this.form)" value="Submit"> and let the function do the submit for me. Hope this helps, Ken www.webdesigntips-foreveryone.com
  2. Thought I would stop by and introduce myself. My name is Ken and I have been in the business of designing and developing Business Applications for almost 30 years now. I have been designing and developing for the Internet since it started back in 1994. I am currently developing a new website for myself: www.webdesigntips-foreveryone.com. I decided that I should begin to give back some of the things I have learned over the years and felt that this would be a good way to do it. Of course no one can know everything and I have to admit that I make use of forums like these frequently looking for solutions to problems and sometimes I try to help a few people along the way. One thing I firmly believe is that there are no stupid questions and that everyone should be treated with courtesy and respect. I hope that I can be a good citizen here during the course of helping people and of course getting help at the same time. Thank you, Ken
  3. stu, I looked at your site and the About Us is working properly. It looks like the other links should work OK if the pages are there. If there is a specific link that you know the page is there but is not working let me know via this post and I'll take a look. Ken www.webdesigntips-foreveryone.com
  4. You need to create a formCheck function which will verify that the user has completed all field on the form correctly. It is really very simple to do. Make sure that this function is called when the form is submitted. function checkFrom(tform) { //check the county if (document.tform.County.selectedIndex == 0) { alert("Please Select a County"); // this alert is displayed only if no selection made return false; } tform.submit(); // submits the form } Make sure your submit button calls the checkForm function, something like this: <input type="button" value="Submit" onClick="checkForm(this.form);"> Thats it. Good Luck, Ken www.webdesigntips-foreveryone.com *********************************************************

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.