Tutorials

Category

26 posts found

19 Apr 2014
0.71K
No Comments

In html on anchor tag without a href link we had # into href but when we click on that href with # hash its moved scroll to top position of page and add # in end of the page url, and we feeling annoyed on click that link, here

Post in

19 Apr 2014
27.22K
No Comments

Its hard for peoples who don’t know more about programming how they call a wp_nav_menu_walker to manipulation wp_nav_menu data, here is I am telling you easy way to add your custom class in wp_nav_menu’s link. Go to Media from WP-Admin, At the top of page you will see screen options

Post in

19 Apr 2014
0.61K
No Comments

These three functions of #jQuery save my alot time in jquery elements manipulation, after extended these three function I cannot do first hide element and then fadeIn, and fadeOut_remove save your time and code,without this you need to first fadeout the element then callback a function in after complete of animation

Post in

19 Apr 2014
0.56K
No Comments

The #json data tome times thrown an error on console when it get null data instead json data, so here is the best way to check if your data is #json then use it

Post in

15 Apr 2014
1.23K
No Comments
Develop user friendly alerts in jQuery css

We have need the alerts popup to show user friendly alerts and message popup instead a annoying browser alert(‘hhah’); because somehow this javascript alert annoying user and and won’t allow to do anything like go to another tab or scroll down of page until user click on OK or cancel

Post in

11 Apr 2014
0.67K
No Comments

Some of designer when they slice layout they create form submit button with a anchor tag and href=”hashtag” and then users cannot able to submit form when they press enter in form fields, I have wrote little code to submit even from don’t have a input type submit button, and

Post in

11 Apr 2014
0.3K
No Comments

We always avoid to use in-line #css in elements and now also avoid to use in-line #javascript events like onclick=”window.location=’http://www.sdtuts.com’;” on elements, and you most need to make element, div redirectable, and maybe we cannot add all of elements in under of #anchor #tag example then I have wrote a

Post in

6 Apr 2014
0.62K
No Comments

in #MySQL cannot do it with any compression operator to check case sensitive value in column, so first convert your value into hash and compare with column value see code example how to do it. Here is example of table case_sensitive_col_id case_sensitive_col_val 1 SDTUTS.com 2 SDTuts.com 3 Sdtuts.com Using SHA1

Post in

2 Apr 2014
0.85K
No Comments
Protect your wordpress wpadmin panel

users can easily access or hacker’s programmed bots will send login request to your yoursite.com/wp-login page, but #wordpress have a good security with admin login panel, I have a wrote little code using #wordpress #hooks to prevent from other all users from your site wordpress wp admin login page. Prevent

Post in

11 Mar 2014
0.8K
No Comments
Keycodes in javascript

I have defined variables of keycodes from laptop keyboard, copy codes and use in your code line, and defined for developer and designer to easily use  who don’t want to know the keyCode. Minified variables First define variables Example how to use

Post in