1.Pro Party Planner Download Pro Party planner This app is designed for both iPhone and iPad Price:$4.99 Category-: Lifestyle Version-: 2.8 Size-:16.8 MB Languages-: English, Chinese, French, German, Japanese, Portuguese, Spanish Seller-: Zysco It is a top Party application on iTunes, It will help the users to organize the party very well by keeping track…
Author: smarttips
How to loop through array in jquery
if(jQuery.trim(jQuery(“#custom-email-input”).val()) != ”) { var sCustomemails = jQuery(“#custom-email-input”).val().split(‘,’); jQuery.each(sCustomemails, function(index, email) { if(!validEmail(email)) { jQuery(“#custom-email-input”).addClass(‘error’); alert(‘Please enter only valid email addresses.’); jQuery(“#custom-email-input”).attr(‘placeholder’,’Please enter only valid email addresses’); error=true; } else { jQuery(“#id_subject”).removeClass(‘error’); } }); }
How to explode a string to an array in javascript or jQuery
Using javascript or jQuery function split() for explode string to array Example: if(jQuery.trim(jQuery(“#custom-email-input”).val()) != ”) { var sCustomemails = jQuery(“#custom-email-input”).val().split(‘,’); alert(sCustomemails ); }
Kill a jQuery function using unbind()
Using The following jquery function to kill a function(unbind/bind) Syntax: jQuery(this).unbind(‘<function name>’); Example: jQuery(“#message_send”).live(“click”, function(){ jQuery(this).unbind(‘autosave’); });
Ubuntu command for access another system using ssh
Ubuntu command for access another system is SSH <username>@<ip> Example: sudo ssh smarttips@192.168.1.25 Type the above command in Terminal .You should be the administrator of this system and also know the password of another system Then system will ask the root password and password of the system trying to connect. Give that password and you…