Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'forms'

1978456 - ZenStudio GUI Alpha: forms fezwizzard0pandamicro frameworkguiwpfwindows
  1. using System;
  2. #if AVOID_GENERICS
  3. using System.Collections;
  4. using ConstantValueSource_bool = ZenStudio.Gui.ConstantValueSource;
  5. #else
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using ConstantValueSource_bool = ZenStudio.Gui.ConstantValueSource<bool>;
  9.  
1474004 - NiKo: jquery html forms
  1. $('input[type=password]').each(function(){
  2.   var value = $(this).attr('value');
  3.   var id = $(this).attr('id');
  4.   $(this).hide();
  5.   var newField = $(this).clone();
  6.   $(newField).attr('type', 'text');
  7.   $(newField).attr('id', id + '__display');
  8.   $(newField).insertAfter($(this));
  9.  
755639 - Adcuz: php post forms
  1. <?php if($_GET['mode'] == "send"){
  2.                 if($_POST['nameUser'] == ""){} else{
  3.                 //#######################################################
  4.                 //#PHP CONTACT FORM BY ADCUZ.CO.UK                      #
  5.                 //#Licensed under the GPL, please re-distribute         #
  6.                 //#If you use this script, I would appreciate credit    #
  7.                 //#but it is not required!                              #
  8.                 //#######################################################
  9.