Skip to content

Instantly share code, notes, and snippets.

@sehugunin
sehugunin / gist:7450449
Created November 13, 2013 14:59
js to show hide div
<script type="text/javascript">
jQuery(function() {
jQuery('#WorkPhone').on('blur', function() {
if(jQuery(this).val().length > 0) {
jQuery('#showDiv').delay(1000).fadeIn();
} else {
jQuery('#showDiv').delay(1000).fadeOut();
}
});
});
@sehugunin
sehugunin / gist:7450283
Created November 13, 2013 14:48
simple php send xml
<?php
// Remote URL
$remoteUrl = 'http://production.ebureau.com/';
// Dummy values, use the values from your form
$userId = selec00014;
$password = 'xz82cc52fy59';
$sid = 'xtech:verify:phone:1';