form error page

Issues related to forms.
Post Reply
Paul
 
 
Posts: 93
Joined: Thu Feb 07, 2013 3:13 am

Re: form error page

Post by Paul »

yes, it has been checked

I found, I added the following code:

The code disables the Ctrl + U key.

<script src = "https://ajax.googleapis.com/ajax/libs/j ... ery.min.js" type = "text / javascript"> </script>
<script type = "text / javascript" language = "javascript"> $ (function () {$ (this) .bind ("contextmenu", function (e) {e.preventDefault ();});}); </script>
<script>
document.onkeydown = function (e) {
if (e.ctrlKey &&
(e.keyCode === 85)) {
return false;
}
};
</script>

Do you have any suggestion to disable Ctrl + U key

thanks for the help
User avatar
Pablo
 
Posts: 21719
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: form error page

Post by Pablo »

In most cases jQuery is already added to the page, so you do not have to add it again. it may break the scripts on the page.
wwonderfull
 
 
Posts: 1277
Joined: Fri Aug 21, 2020 8:27 am

Re: form error page

Post by wwonderfull »

I used the validation through AJAX for captcha and it worked fine for me. I used layout grids for this and yes no extra setting just write what the error message and then check on "Enable Realtime validation" and done.

Your website looks outdated from modern perspective so try to use layout grids if you find it useful. It is the trend for modern browsers and future generation web development. A fast responsive website gives the users a better experience and visit your site more and more.
wwonderfull
 
 
Posts: 1277
Joined: Fri Aug 21, 2020 8:27 am

Re: form error page

Post by wwonderfull »

Here is a screen shot of your project working. If you do the right settings it may be the result for you also.
Image

If you need a demo then please request.
Post Reply