Comments for 9bit Studios https://9bitstudios.com Web Design, Themes, & Applications Sun, 14 Apr 2019 08:26:40 +0000 hourly 1 https://wordpress.org/?v=4.9.10 Comment on Loading JavaScript with RequireJS by Vivek C https://9bitstudios.com/2013/03/loading-javascript-with-requirejs/#comment-250869 Sun, 14 Apr 2019 08:26:40 +0000 https://9bitstudios.com/?p=794#comment-250869 Thanks for this great article, Ian! Surprised to see someone respond 6 years after you wrote this? đŸ™‚ Well, the documentation on requirejs.org is confusing for a beginner even today, and your article here really helped to get started. Hope you still enjoy code, beer and coffee. Cheers!

]]>
Comment on JavaScript Replacement for Deprecated arguments.callee by Anzhelika https://9bitstudios.com/2014/01/javascript-replacement-for-deprecated-arguments-callee/#comment-249347 Mon, 14 Jan 2019 18:24:58 +0000 https://9bitstudios.com/?p=940#comment-249347 I just love you guys! Thaaaank you!

]]>
Comment on How to Style Your Own jQuery UI Calendar by Hardik https://9bitstudios.com/2012/11/how-to-style-your-own-jquery-ui-calendar/#comment-248910 Wed, 12 Dec 2018 03:43:50 +0000 https://9bitstudios.com/?p=674#comment-248910 Thanks for basic setup,
I had improved according to my design.

https://i63.tinypic.com/1zmoyl3.png

.ui-datepicker {
background: #000000; /* Old browsers */
background: #000000 -moz-linear-gradient(top, #fcfcfc 0%, #fff 100%); /* FF3.6+ */
background: #000000 -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000)), color-stop(100%,#34495e); /* Chrome,Safari4+ */
background: #000000 -webkit-linear-gradient(top,#000000 0%, #34495e 100%); /* Chrome10+,Safari5.1+ */
background: #000000 -o-linear-gradient(top,#000000 0%, #34495e 100%); /* Opera11.10+ */
background: #000000 -ms-linear-gradient(top,#000000 0%, #34495e 100%); /* IE10+ */
background: #000000 linear-gradient(top,#000000 0%, #34495e 100%); /* W3C */
font-size:11px;
padding:10px;
border:1px solid #5BFEC8;
width: 300px;
}

.ui-datepicker table td {
text-align:center;
}

.ui-datepicker a {
cursor:pointer;
text-decoration:none;
}

.ui-datepicker-prev {
}

.ui-datepicker-next {
float:right;
}

.ui-datepicker-title {
text-align: center;
font-weight:bold;
}

.ui-widget.ui-widget-content{
border: 2px solid #5BFEC8;
}

.ui-datepicker th {
padding: .7em .3em;
text-align: center;
font-weight: bold;
border: 0;
color: #5BFEC8;
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default{
border: 1px solid #5bfec8;
background: #000000;
font-weight: normal;
color: #5bfec8;
}

a.ui-state-default:hover{
border: 1px solid white;
background: #5bfec8;
font-weight: bold;
color: black;
}

.ui-state-active, .ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
border: 1px solid white;
background: #5bfec8;
font-weight: bold;
color: black;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
border: 1px solid #dad55e;
background: #fffa90;
color: black;
}

.ui-widget-header {
border: 1px solid #5bfec8;
background: #080808;
color: #5bfec8;
font-weight: bold;
}

]]>
Comment on A Node.js Primer by Nicanord https://9bitstudios.com/2013/09/a-node-js-primer/#comment-248106 Fri, 26 Oct 2018 08:07:46 +0000 https://9bitstudios.com/?p=899#comment-248106 thanks very much.

]]>
Comment on Asynchronous Processes Inside of a Loop in JavaScript by saktan https://9bitstudios.com/2016/01/asynchronous-processes-inside-of-a-loop-in-javascript/#comment-246844 Wed, 01 Aug 2018 11:58:08 +0000 https://9bitstudios.com/?p=1131#comment-246844 you can do this :

for(var i=1; i < 6; i++) {

jQuery.ajax({
type: "GET",
url: "test.php?id=" + i,
contentType: "application/json; charset=utf-8",
async: true,
dataType: "json",
data : {user:i},
success: function(data, textStatus, jqXHR){
console.log('We are calling with index ' + data.id + ' and the data is...')
},
error: function (jqXHR, textStatus, errorThrown) {
console.log(errorThrown);
}
});
}

test.php file :

]]>
Comment on jQuery: What’s the Difference Between $(this), $this, and this? by Sithira Prabash https://9bitstudios.com/2013/03/jquery-whats-the-difference-between-this-this-and-this/#comment-246838 Wed, 01 Aug 2018 04:58:57 +0000 https://9bitstudios.com/?p=790#comment-246838 Thank you very much … đŸ™‚

]]>
Comment on Submit Apache Cordova Applications for iOS and Android to the Apple App Store & Google Play by St https://9bitstudios.com/2016/01/submit-apache-cordova-applications-for-ios-and-android-to-the-apple-app-store-google-play/#comment-245909 Wed, 27 Jun 2018 09:33:34 +0000 https://9bitstudios.com/?p=1118#comment-245909 Good guide thanks. But Apple has renamed “itunes connect” to “app store connect”. In your guide it is still “itunes connect”.

]]>
Comment on Add Additional Comment Form Validation in WordPress by LEAVE A REPLY https://9bitstudios.com/2013/04/add-additional-comment-form-validation-in-wordpress/#comment-245638 Sun, 17 Jun 2018 12:53:56 +0000 https://9bitstudios.com/?p=829#comment-245638 So that’s a general overview of how you can shore up your comment form a bit more. It’s not a bulletproof solution, but it’s something. And in the continual war against spam, every little bit can help. If somebody really wants to tell you how you can increase the size of various reproductive organs on your body by up to 300%, you gotta make them work for it.

]]>
Comment on Add Additional Comment Form Validation in WordPress by LEAVE A REPLY https://9bitstudios.com/2013/04/add-additional-comment-form-validation-in-wordpress/#comment-245637 Sun, 17 Jun 2018 12:52:41 +0000 https://9bitstudios.com/?p=829#comment-245637 // Save the comment meta data along with comment

add_action( 'comment_post', 'save_comment_meta_data' );
function save_comment_meta_data( $comment_id ) {
if ( ( isset( $_POST['phone'] ) ) && ( $_POST['phone'] != '') )
$phone = wp_filter_nohtml_kses($_POST['phone']);
add_comment_meta( $comment_id, 'phone', $phone );

if ( ( isset( $_POST['title'] ) ) && ( $_POST['title'] != '') )
$title = wp_filter_nohtml_kses($_POST['title']);
add_comment_meta( $comment_id, 'title', $title );

if ( ( isset( $_POST['rating'] ) ) && ( $_POST['rating'] != '') )
$rating = wp_filter_nohtml_kses($_POST['rating']);
add_comment_meta( $comment_id, 'rating', $rating );
}

]]>
Comment on Getting Data From the Wikipedia API Using jQuery by Eldon https://9bitstudios.com/2014/03/getting-data-from-the-wikipedia-api-using-jquery/#comment-243430 Thu, 03 May 2018 21:53:20 +0000 https://9bitstudios.com/?p=948#comment-243430 after the is suppose to div class article, but I put in in tags so it was removed.

]]>