Jump to content
View in the app

A better way to browse. Learn more.

IPS Gizmolord 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.

Featured Replies

Posted
comment_14719

I was revising and spinning my hand in dhtml...i found some dificulties  someone answer these... 1.when i was making a form and the password feild i hide the actual letters by black dots and the problem is i made 2 coloumns 1 password and second confirm password.... but the process how to make a source like that they actually indeed check each other so that they are same or not... 2..then if the pass aren't matching then hw to display that text above the box they aren't same??? 3..if i make a restriction thatpass should be nt less than 5 letters ..then for that plz write a script VB based..! 4.if i make a list in drop down menu i added many things bt the user would be fed up to find his thing so if he wants delhi in list and their a lot of content in that so when he press d all things from d lettes should be highlited up...how make that script??

comment_14721

1. You will need to use javascript to perform this operation.

Try with this set of javascript

function validate(form) {
var e = form.elements;

/* Your validation code. */

if(e['password'].value != e['confirm-password'].value) {
alert('Your passwords do not match. Please type more carefully.');
return false;
}
return true;
}with a form along the lines of

<form action="..." method="post" onsubmit="return validate(this);">
<!-- ... -->

<label>Password:
<input type="password" name="password" value="">
</label>
<label>Confirm password:
<input type="password" name="confirm-password" value="">
</label>

<!-- ... -->
</form>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

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.