Techbirds | Knowledge Hub | Page 25
This tutorial will explain how to create a bold bright-textured slick text effect in Photoshop CS6. A simple pattern will be used to create the bump map, while some other material settings will be changed to create the final appearance. Lighting, Environment, and Image Based Light settings will also be modified to complete the scene
Read More →
1,334 total views, no views today
Some times we got a situation in which we have to access some specific table row
$(‘#firstTable tbody tr:nth-child(3).html(‘
To access nth table data
$(‘#first_Table tbody tr).find(‘td:nth-child(2)’);
$(‘#first_Table tbody tr).find(‘td:nth-child(2)’); |
To access each row of table
var rowCount = $(‘#first_Table tr’).length; //will count number of rows in table var i = 1; $(‘#first_Table tr’).each(function() { $(‘#first_Table tbody tr:nth-child(‘+i+’)’).find(‘td:eq(3)’).append(‘Some Text Goes Here’); i = i+1; });
var rowCount = $(‘#first_Table tr’).length; //will count number of rows in table var i = 1; $(‘#first_Table tr’).each(function() { $(‘#first_Table tbody tr:nth-child(‘+i+’)’).find(‘td:eq(3)’).append(‘Some Text Goes Here’); i = i+1; }); |
Count
Read More →
3,589 total views, no views today
Today I am presenting you some trick in jQuery. Some times we have a situation to Clone a table in HTML into another table. We can find lots of solution on web but what if the table also contain some input fields and whatever we filled in the first table to be displayed as it
Read More →
1,192 total views, no views today
The HTML5 Shiv The HTML5 Shiv enables use of HTML5 sectioning elements in legacy Internet Explorer and provides basic HTML5 styling for Internet Explorer 6-9, Safari 4.x (and iPhone 3.x), and Firefox 3.x. Installation Include the HTML5 shiv in the of your page in a conditional comment and after any stylesheets.
Manual installation Download
Read More →
822 total views, no views today
Posted on: May 5, 2014 /
Categories: PHP / Author Name: Anand Kumar
Problem: WordPress add
and
tag automatically and plugin content always showing at top. Solution : To remove or block
and
tag automatically in wordpress , i have tried following thing: 1. In the function.php or plugin template: remove_filter( ‘the_content’, ‘wpautop’ ); remove_filter( ‘the_excerpt’, ‘wpautop’ ); Not working for me. 2. I
Read More →
1,202 total views, 1 views today