css scroll table body – table freeze panes

4.12K views
no comments
5 Feb 2017 12:59 am

By default header of table are moving on top position of table when we scrolling down, so that time we didn’t see the headings of table to identify column value, Here is I have wrote the whole code to set fixed table header in top position of table.

Css of Table for formatting and over flow scrolling

body{font-family:Arial; color:#5d5d5d;}
.container{display:block;position:relative; margin:0 auto; width:80%;}
.table_overflow{
	/*border-collapse:collapse;*/
	float:left;
	width:100%;
	font-size:12px;
}


/* -- OVERFLOW SCROLL START -- */
.table_overflow thead{
	background-color:#f9f9f9;
	border-bottom:#a5a5a5 2px solid;
}
.table_overflow tbody {
	max-height:400px;
	overflow-x:auto;
	overflow-y:scroll;
}
.table_overflow thead, .table_overflow tbody{
	float:left;
	width:100%;
}
.table_overflow thead .th_1{
	width:400px;
}

.table_overflow tbody tr td:nth-child(1){
	width:400px;
}

.table_overflow thead .th_2{
	width:200px;
}

.table_overflow tbody tr td:nth-child(2){
	width:200px;
}

.table_overflow thead .th_3{
	width:200px;
}

.table_overflow tbody tr td:nth-child(3){
	width:200px;
}
.table_overflow thead .th_4{
	width:200px;
}

.table_overflow tbody tr td:nth-child(4){
	width:200px;
}

/* -- OVERFLOW SCROLL END -- */



.table_overflow tr td, .table_overflow tr th{	
	padding-top:10px;
	padding-bottom:10px;
	text-align:left;
	padding-left:9px;
}

.table_overflow tr th{ font-size:15px; text-align:left;}

.table_overflow thead tr td{
	text-align:center;
}
.table_overflow tbody tr:nth-of-type(even){
	background-color:#f9f9f9;
	border-bottom:#e5e5e5 1px solid;
}

.table_overflow tr td a{
	color:#5d5d5d;
	font-weight:bold;
	text-decoration:none;
}
.table_overflow tr td a:hover{
	color:#2d2d2d;
}

HTML of table

<div class="container">
    <h2>css scroll table body</h2>
    <h2>css freeze panes table</h2>
    <div class="table_container">
		<table class="table_overflow">
			<thead>
			<tr>
				<th class="th_1">Post Title</th>
				<th class="th_2">Post Link</th>
				<th class="th_2">Post Author</th>
				<th class="th_4">Post Views</th>
			</tr>
			</thead>
			<tbody>
				<tr>
					<td><a href="https://sdtuts.com/?p=6899">16 HTML5 jQuery Audio Players for websites</a></td>
					<td>https://sdtuts.com/?p=6899</td>
					<td>Raja Perhiyar</td>
					<td>3514</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7122">22 JQuery+Bootstrap Popup Notifications</a></td>
					<td>https://sdtuts.com/?p=7122</td>
					<td>Raja Perhiyar</td>
					<td>3423</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6849">PHP Server Side Form Validation tutorial</a></td>
					<td>https://sdtuts.com/?p=6849</td>
					<td>Rameez SOOMRO</td>
					<td>3202</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6857">26 JavaScript frameworks and Libraries</a></td>
					<td>https://sdtuts.com/?p=6857</td>
					<td>Raja Perhiyar</td>
					<td>3165</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6796">Maximum execution time of 80 seconds exceeded in class-http.php</a></td>
					<td>https://sdtuts.com/?p=6796</td>
					<td>Rameez SOOMRO</td>
					<td>3058</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7030">19 jQuery + Bootstrap time picker plugins</a></td>
					<td>https://sdtuts.com/?p=7030</td>
					<td>Raja Perhiyar</td>
					<td>3056</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6923">20 Free Project task management software services</a></td>
					<td>https://sdtuts.com/?p=6923</td>
					<td>Raja Perhiyar</td>
					<td>2897</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6953">18 Online website speed analysis report tools</a></td>
					<td>https://sdtuts.com/?p=6953</td>
					<td>Raja Perhiyar</td>
					<td>2806</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7017">Interview of Graphics and Web Designer Jessie Daryl Cacafranca</a></td>
					<td>https://sdtuts.com/?p=7017</td>
					<td>Rameez SOOMRO</td>
					<td>2667</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6782">Interview of Digital Artist Cyril ROLANDO-AquaSixio</a></td>
					<td>https://sdtuts.com/?p=6782</td>
					<td>Rameez SOOMRO</td>
					<td>2635</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6846">Secure laravel core files controllers from direct access</a></td>
					<td>https://sdtuts.com/?p=6846</td>
					<td>Rameez SOOMRO</td>
					<td>2588</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6975">28 Android IOS Mobile Application Frameworks</a></td>
					<td>https://sdtuts.com/?p=6975</td>
					<td>Raja Perhiyar</td>
					<td>2554</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6844">Define and Access array in constants PHP</a></td>
					<td>https://sdtuts.com/?p=6844</td>
					<td>Rameez SOOMRO</td>
					<td>2496</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6842">PHP Array_merge function issue</a></td>
					<td>https://sdtuts.com/?p=6842</td>
					<td>Rameez SOOMRO</td>
					<td>2488</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7049">19 jQuery + Bootstrap date picker plugins</a></td>
					<td>https://sdtuts.com/?p=7049</td>
					<td>Raja Perhiyar</td>
					<td>2434</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6607">Facebook Photographer's Photography photos-1</a></td>
					<td>https://sdtuts.com/?p=6607</td>
					<td>Rameez SOOMRO</td>
					<td>2351</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6820">Interview of Russian Artist Victor Fedotov</a></td>
					<td>https://sdtuts.com/?p=6820</td>
					<td>Rameez SOOMRO</td>
					<td>2196</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6606">Facebook Photographer's Photography photos-2</a></td>
					<td>https://sdtuts.com/?p=6606</td>
					<td>Rameez SOOMRO</td>
					<td>2133</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7283">20 touch swipe enabled slider for mobile application</a></td>
					<td>https://sdtuts.com/?p=7283</td>
					<td>Raja Perhiyar</td>
					<td>2065</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7344">PHP Add Ordinal Number format 1st 2nd 3rd 4th 11th 12th 21st</a></td>
					<td>https://sdtuts.com/?p=7344</td>
					<td>Rameez SOOMRO</td>
					<td>2043</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6568">CSS Devices Responsive Media queries hack list</a></td>
					<td>https://sdtuts.com/?p=6568</td>
					<td>Rameez SOOMRO</td>
					<td>1989</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6583">Laravel session cannot update on ajax request</a></td>
					<td>https://sdtuts.com/?p=6583</td>
					<td>Rameez SOOMRO</td>
					<td>1938</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7341">Art Collection of February 2016</a></td>
					<td>https://sdtuts.com/?p=7341</td>
					<td>Rameez SOOMRO</td>
					<td>1937</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7206">22 online gif loader generator</a></td>
					<td>https://sdtuts.com/?p=7206</td>
					<td>Raja Perhiyar</td>
					<td>1924</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6601">Facebook Photographer's Photography photos-3</a></td>
					<td>https://sdtuts.com/?p=6601</td>
					<td>Rameez SOOMRO</td>
					<td>1854</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6209">Wordpress add custom class in wp_nav_menu links</a></td>
					<td>https://sdtuts.com/?p=6209</td>
					<td>Rameez SOOMRO</td>
					<td>1789</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7242">Art Collection of January 2016</a></td>
					<td>https://sdtuts.com/?p=7242</td>
					<td>Rameez SOOMRO</td>
					<td>1717</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6566">Check if is ajax request in CI Laravel PHP</a></td>
					<td>https://sdtuts.com/?p=6566</td>
					<td>Rameez SOOMRO</td>
					<td>1622</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7178">Art Collection of December 2015</a></td>
					<td>https://sdtuts.com/?p=7178</td>
					<td>Raja Perhiyar</td>
					<td>1587</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7367">php how to get domain from url</a></td>
					<td>https://sdtuts.com/?p=7367</td>
					<td>Rameez SOOMRO</td>
					<td>1385</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6559">Access localhost website in mobile device</a></td>
					<td>https://sdtuts.com/?p=6559</td>
					<td>Rameez SOOMRO</td>
					<td>1297</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7403">Art Collection of March 2016</a></td>
					<td>https://sdtuts.com/?p=7403</td>
					<td>Rameez SOOMRO</td>
					<td>1288</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7348">30 Calculate shipping rates APIs</a></td>
					<td>https://sdtuts.com/?p=7348</td>
					<td>Raja Perhiyar</td>
					<td>1232</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7430">20 jQuery HTML5 Video Player for Website</a></td>
					<td>https://sdtuts.com/?p=7430</td>
					<td>Raja Perhiyar</td>
					<td>1135</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7417">Earn money | Monitize From websites</a></td>
					<td>https://sdtuts.com/?p=7417</td>
					<td>Raja Perhiyar</td>
					<td>1097</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6544">Google chrome console features for developer designers</a></td>
					<td>https://sdtuts.com/?p=6544</td>
					<td>Rameez SOOMRO</td>
					<td>907</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4847">Ft-Top Popular Web Design Interfaces p4</a></td>
					<td>https://sdtuts.com/?p=4847</td>
					<td>Rameez SOOMRO</td>
					<td>661</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6058">Php convert hash into hashtags from content</a></td>
					<td>https://sdtuts.com/?p=6058</td>
					<td>Rameez SOOMRO</td>
					<td>644</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7500">Art Collection of April 2016</a></td>
					<td>https://sdtuts.com/?p=7500</td>
					<td>Rameez SOOMRO</td>
					<td>636</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4960">Ft-Top Popular Web Design Interfaces p6</a></td>
					<td>https://sdtuts.com/?p=4960</td>
					<td>Rameez SOOMRO</td>
					<td>558</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5179">ft Amazing 3D Paint ART part2</a></td>
					<td>https://sdtuts.com/?p=5179</td>
					<td>Rameez SOOMRO</td>
					<td>547</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6502">lose jpg png image size in original dimension</a></td>
					<td>https://sdtuts.com/?p=6502</td>
					<td>Rameez SOOMRO</td>
					<td>518</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5264">50+ Fresh Jquery Text and Image Slider</a></td>
					<td>https://sdtuts.com/?p=5264</td>
					<td>Rameez SOOMRO</td>
					<td>502</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5565">65 Creative Corporate Business Card Design Ideas P-2</a></td>
					<td>https://sdtuts.com/?p=5565</td>
					<td>Rameez SOOMRO</td>
					<td>485</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4148">ft WordPress Theme Designs P2</a></td>
					<td>https://sdtuts.com/?p=4148</td>
					<td>Rameez SOOMRO</td>
					<td>481</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6433">Wordpress replace search form html</a></td>
					<td>https://sdtuts.com/?p=6433</td>
					<td>Rameez SOOMRO</td>
					<td>475</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4369">FT-Web Designs and Web Interfaces of 2011-2012 p2</a></td>
					<td>https://sdtuts.com/?p=4369</td>
					<td>Rameez SOOMRO</td>
					<td>470</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=7512">Convert --Invalid Parameters ImageMagick windows</a></td>
					<td>https://sdtuts.com/?p=7512</td>
					<td>Rameez SOOMRO</td>
					<td>468</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6276">Create custom jquery slider with progress</a></td>
					<td>https://sdtuts.com/?p=6276</td>
					<td>Rameez SOOMRO</td>
					<td>458</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3790">38 Most Popular PHP MVC Frameworks</a></td>
					<td>https://sdtuts.com/?p=3790</td>
					<td>Rameez SOOMRO</td>
					<td>455</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6264">Click on not specified element</a></td>
					<td>https://sdtuts.com/?p=6264</td>
					<td>Rameez SOOMRO</td>
					<td>455</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5291">65 Creative Corporate Business Card Design Ideas P-1</a></td>
					<td>https://sdtuts.com/?p=5291</td>
					<td>Rameez SOOMRO</td>
					<td>449</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6274">Detect when user type done</a></td>
					<td>https://sdtuts.com/?p=6274</td>
					<td>Rameez SOOMRO</td>
					<td>444</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5015">ft Amazing 3D Paint ART part1</a></td>
					<td>https://sdtuts.com/?p=5015</td>
					<td>Rameez SOOMRO</td>
					<td>443</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6454">Calculate time difference total hours minutes months years </a></td>
					<td>https://sdtuts.com/?p=6454</td>
					<td>Rameez SOOMRO</td>
					<td>440</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4785">Ft-Top Popular Web Design Interfaces p3</a></td>
					<td>https://sdtuts.com/?p=4785</td>
					<td>Rameez SOOMRO</td>
					<td>421</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6201">Develop user friendly alerts in jQuery css</a></td>
					<td>https://sdtuts.com/?p=6201</td>
					<td>Rameez SOOMRO</td>
					<td>420</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4163">ft WordPress Theme Designs P3</a></td>
					<td>https://sdtuts.com/?p=4163</td>
					<td>Rameez SOOMRO</td>
					<td>417</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4908">Ft-Top Popular Web Design Interfaces p5</a></td>
					<td>https://sdtuts.com/?p=4908</td>
					<td>Rameez SOOMRO</td>
					<td>416</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6183">Protect your wordpress wpadmin panel</a></td>
					<td>https://sdtuts.com/?p=6183</td>
					<td>Rameez SOOMRO</td>
					<td>405</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=942">Photoshop Text Effects and Text Manipulation Tutorials</a></td>
					<td>https://sdtuts.com/?p=942</td>
					<td>Rameez SOOMRO</td>
					<td>404</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6298">Generate wordpress user password</a></td>
					<td>https://sdtuts.com/?p=6298</td>
					<td>Rameez SOOMRO</td>
					<td>403</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6539">Best way Show title of all types of pages in wordpress</a></td>
					<td>https://sdtuts.com/?p=6539</td>
					<td>Rameez SOOMRO</td>
					<td>398</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3752">Pakistani Web Designer's Web Designing Work ft 2</a></td>
					<td>https://sdtuts.com/?p=3752</td>
					<td>Rameez SOOMRO</td>
					<td>393</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3302">3D Creative Company Logo featured</a></td>
					<td>https://sdtuts.com/?p=3302</td>
					<td>Rameez SOOMRO</td>
					<td>392</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2599">Featured Photoshop Ornament Brushes ABR free download</a></td>
					<td>https://sdtuts.com/?p=2599</td>
					<td>Rameez SOOMRO</td>
					<td>387</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3204">Boys and Girls in Manipulation Style Featured</a></td>
					<td>https://sdtuts.com/?p=3204</td>
					<td>Rameez SOOMRO</td>
					<td>383</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6328">32 free patterns for photoshop web layout</a></td>
					<td>https://sdtuts.com/?p=6328</td>
					<td>Rameez SOOMRO</td>
					<td>383</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2287">Featured Photoshop Blood Brushes ABR free download</a></td>
					<td>https://sdtuts.com/?p=2287</td>
					<td>Rameez SOOMRO</td>
					<td>382</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4735">Ft-Top Popular Web Design Interfaces p2</a></td>
					<td>https://sdtuts.com/?p=4735</td>
					<td>Rameez SOOMRO</td>
					<td>380</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6266">Paste plain text on contenteditable element</a></td>
					<td>https://sdtuts.com/?p=6266</td>
					<td>Rameez SOOMRO</td>
					<td>372</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2492">Featured Photoshop Blood Brushes ABR free download</a></td>
					<td>https://sdtuts.com/?p=2492</td>
					<td>Rameez SOOMRO</td>
					<td>365</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4052">ft WordPress Theme Designs P1</a></td>
					<td>https://sdtuts.com/?p=4052</td>
					<td>Rameez SOOMRO</td>
					<td>365</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4378">Ft-Top Popular Web Design Interfaces p1</a></td>
					<td>https://sdtuts.com/?p=4378</td>
					<td>Rameez SOOMRO</td>
					<td>351</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6447">Define theme template in wordpress</a></td>
					<td>https://sdtuts.com/?p=6447</td>
					<td>Rameez SOOMRO</td>
					<td>350</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=4206">FT-Web Designs and Web Interfaces of 2011-2012 p1</a></td>
					<td>https://sdtuts.com/?p=4206</td>
					<td>Rameez SOOMRO</td>
					<td>334</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6040">wordpress plugins makes your site super and secure</a></td>
					<td>https://sdtuts.com/?p=6040</td>
					<td>Rameez SOOMRO</td>
					<td>333</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3594">14 August Independence Featured Art Work</a></td>
					<td>https://sdtuts.com/?p=3594</td>
					<td>Rameez SOOMRO</td>
					<td>329</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3702">Pakistani Web Designer's Web Designing Work ft</a></td>
					<td>https://sdtuts.com/?p=3702</td>
					<td>Rameez SOOMRO</td>
					<td>322</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3180">Hip Hop Breakdance Manipulation Digital ART-3</a></td>
					<td>https://sdtuts.com/?p=3180</td>
					<td>Rameez SOOMRO</td>
					<td>321</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=3084">Hip Hop Breakdance Manipulation Digital ART-2</a></td>
					<td>https://sdtuts.com/?p=3084</td>
					<td>Rameez SOOMRO</td>
					<td>318</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2217">jQuery client side form validation</a></td>
					<td>https://sdtuts.com/?p=2217</td>
					<td>Rameez SOOMRO</td>
					<td>317</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6315">Get wordpress post thumbnail src</a></td>
					<td>https://sdtuts.com/?p=6315</td>
					<td>Rameez SOOMRO</td>
					<td>316</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6442">Php convert object to array</a></td>
					<td>https://sdtuts.com/?p=6442</td>
					<td>Rameez SOOMRO</td>
					<td>312</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6215">Prevent click on anchor tag href hash</a></td>
					<td>https://sdtuts.com/?p=6215</td>
					<td>Rameez SOOMRO</td>
					<td>305</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6321">File extension validation on upload will harmful for server</a></td>
					<td>https://sdtuts.com/?p=6321</td>
					<td>Rameez SOOMRO</td>
					<td>304</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1874">Ft 3D Web and Application Interface Designs Part-1</a></td>
					<td>https://sdtuts.com/?p=1874</td>
					<td>Rameez SOOMRO</td>
					<td>302</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2203">jQuery CSS Dropdown menu with third level</a></td>
					<td>https://sdtuts.com/?p=2203</td>
					<td>Rameez SOOMRO</td>
					<td>300</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6291">Use $this CI in codeigniter functions helper</a></td>
					<td>https://sdtuts.com/?p=6291</td>
					<td>Rameez SOOMRO</td>
					<td>295</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2589">3D Creative Company Logo featured 2</a></td>
					<td>https://sdtuts.com/?p=2589</td>
					<td>Rameez SOOMRO</td>
					<td>293</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1992">Ft 3D Web and Application Interface Designs Part-2</a></td>
					<td>https://sdtuts.com/?p=1992</td>
					<td>Rameez SOOMRO</td>
					<td>290</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5769">45+ Vector and Icons for Web Interfaces UI designs</a></td>
					<td>https://sdtuts.com/?p=5769</td>
					<td>Rameez SOOMRO</td>
					<td>283</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5898">Wordpress add ajax url variable</a></td>
					<td>https://sdtuts.com/?p=5898</td>
					<td>Rameez SOOMRO</td>
					<td>283</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6012">Match user password in wordpress</a></td>
					<td>https://sdtuts.com/?p=6012</td>
					<td>Rameez SOOMRO</td>
					<td>272</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6268">MEASURE UNITS PX, CM, IN, MM CONVERSION IN PHP FUNCTION </a></td>
					<td>https://sdtuts.com/?p=6268</td>
					<td>Rameez SOOMRO</td>
					<td>270</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6534">Use variable in laravel swift mail</a></td>
					<td>https://sdtuts.com/?p=6534</td>
					<td>Rameez SOOMRO</td>
					<td>268</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1658">One Styled Girl Dance Manipulation ART</a></td>
					<td>https://sdtuts.com/?p=1658</td>
					<td>Rameez SOOMRO</td>
					<td>267</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6479">13 email marketing services packages plans</a></td>
					<td>https://sdtuts.com/?p=6479</td>
					<td>Rameez SOOMRO</td>
					<td>264</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6007">Get all postmeta data in wordpress</a></td>
					<td>https://sdtuts.com/?p=6007</td>
					<td>Rameez SOOMRO</td>
					<td>263</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2819">Hip Hop Breakdance Manipulation Digital ART-1</a></td>
					<td>https://sdtuts.com/?p=2819</td>
					<td>Rameez SOOMRO</td>
					<td>257</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6294">Develop Template system in custom CMS</a></td>
					<td>https://sdtuts.com/?p=6294</td>
					<td>Rameez SOOMRO</td>
					<td>255</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=5908">PHP remove all special characters from string</a></td>
					<td>https://sdtuts.com/?p=5908</td>
					<td>Rameez SOOMRO</td>
					<td>249</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1455">Icons and User Interface-UI Elements Free Downloads and Buy</a></td>
					<td>https://sdtuts.com/?p=1455</td>
					<td>Rameez SOOMRO</td>
					<td>247</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=197">60 Featured Creative Desk Type Web Design Interfaces</a></td>
					<td>https://sdtuts.com/?p=197</td>
					<td>Rameez SOOMRO</td>
					<td>245</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6310">Best google chrome extensions for development</a></td>
					<td>https://sdtuts.com/?p=6310</td>
					<td>Rameez SOOMRO</td>
					<td>233</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6163">Keycodes in javascript</a></td>
					<td>https://sdtuts.com/?p=6163</td>
					<td>Rameez SOOMRO</td>
					<td>223</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6222">Wordpress theme development tricks</a></td>
					<td>https://sdtuts.com/?p=6222</td>
					<td>Rameez SOOMRO</td>
					<td>223</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6198">Submit Form when user press enter</a></td>
					<td>https://sdtuts.com/?p=6198</td>
					<td>Rameez SOOMRO</td>
					<td>211</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6207">jQuery Extended function for fadeIn and fadeOut</a></td>
					<td>https://sdtuts.com/?p=6207</td>
					<td>Rameez SOOMRO</td>
					<td>204</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6160">php shuffle array keys</a></td>
					<td>https://sdtuts.com/?p=6160</td>
					<td>Rameez SOOMRO</td>
					<td>200</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6156">jQuery Javascript Detect if shift enter pressed</a></td>
					<td>https://sdtuts.com/?p=6156</td>
					<td>Rameez SOOMRO</td>
					<td>196</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6137">Get wordpress database table prefix</a></td>
					<td>https://sdtuts.com/?p=6137</td>
					<td>Rameez SOOMRO</td>
					<td>192</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6205">Check if is JSON Data</a></td>
					<td>https://sdtuts.com/?p=6205</td>
					<td>Rameez SOOMRO</td>
					<td>189</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6186">Mysql case sensitive where exactly </a></td>
					<td>https://sdtuts.com/?p=6186</td>
					<td>Rameez SOOMRO</td>
					<td>185</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1289">Featured Text Art Text Special Effects and Manipulation</a></td>
					<td>https://sdtuts.com/?p=1289</td>
					<td>Rameez SOOMRO</td>
					<td>178</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6295">featured Integrated Development Environment IDE</a></td>
					<td>https://sdtuts.com/?p=6295</td>
					<td>Rameez SOOMRO</td>
					<td>162</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=206">Featured Manipulation Adidas and Nike Shoes Part-1</a></td>
					<td>https://sdtuts.com/?p=206</td>
					<td>Rameez SOOMRO</td>
					<td>158</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1185">Featured Text Art Faces and Human Bodies</a></td>
					<td>https://sdtuts.com/?p=1185</td>
					<td>Rameez SOOMRO</td>
					<td>156</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6219">13 fresh free company logos with PSD</a></td>
					<td>https://sdtuts.com/?p=6219</td>
					<td>Rameez SOOMRO</td>
					<td>153</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=795">Featured Creative Concepts of Robots Designs Images HD Part-2</a></td>
					<td>https://sdtuts.com/?p=795</td>
					<td>Rameez SOOMRO</td>
					<td>150</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6100">Check if checkbox is checked or unchecked</a></td>
					<td>https://sdtuts.com/?p=6100</td>
					<td>Rameez SOOMRO</td>
					<td>134</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=179">Featured Creative Concepts of Robots Designs Images HD Part-1</a></td>
					<td>https://sdtuts.com/?p=179</td>
					<td>Rameez SOOMRO</td>
					<td>133</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6272">Check if is even or is odd in PHP</a></td>
					<td>https://sdtuts.com/?p=6272</td>
					<td>Rameez SOOMRO</td>
					<td>131</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=1590">Featured DeviantART Logos and Logos Concept</a></td>
					<td>https://sdtuts.com/?p=1590</td>
					<td>Rameez SOOMRO</td>
					<td>121</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=200">Creative Resumes and CVs Samples</a></td>
					<td>https://sdtuts.com/?p=200</td>
					<td>Rameez SOOMRO</td>
					<td>118</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6034">get month last and first day even leap year</a></td>
					<td>https://sdtuts.com/?p=6034</td>
					<td>Rameez SOOMRO</td>
					<td>117</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6154">20 helpfull php array manipulation functions</a></td>
					<td>https://sdtuts.com/?p=6154</td>
					<td>Rameez SOOMRO</td>
					<td>117</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6289">Detect small caps title caps and capital case string</a></td>
					<td>https://sdtuts.com/?p=6289</td>
					<td>Rameez SOOMRO</td>
					<td>117</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=699">Featured Manipulation Adidas and Nike Shoes Part-2</a></td>
					<td>https://sdtuts.com/?p=699</td>
					<td>Rameez SOOMRO</td>
					<td>106</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6157">Develop code testing system on your localhost</a></td>
					<td>https://sdtuts.com/?p=6157</td>
					<td>Rameez SOOMRO</td>
					<td>93</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6196">jQuery make element click with redirectable</a></td>
					<td>https://sdtuts.com/?p=6196</td>
					<td>Rameez SOOMRO</td>
					<td>92</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6146">PHP Select optgroup from array</a></td>
					<td>https://sdtuts.com/?p=6146</td>
					<td>Rameez SOOMRO</td>
					<td>75</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6158">PHP get array keys from array</a></td>
					<td>https://sdtuts.com/?p=6158</td>
					<td>Rameez SOOMRO</td>
					<td>67</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6111">Insert array data into database column with mysql</a></td>
					<td>https://sdtuts.com/?p=6111</td>
					<td>Rameez SOOMRO</td>
					<td>65</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=6070">PHP Generate random unique password</a></td>
					<td>https://sdtuts.com/?p=6070</td>
					<td>Rameez SOOMRO</td>
					<td>56</td>
				</tr>
				
				<tr>
					<td><a href="https://sdtuts.com/?p=2596">Highlight Author Comment on wordpress post</a></td>
					<td>https://sdtuts.com/?p=2596</td>
					<td>Rameez SOOMRO</td>
					<td>47</td>
				</tr>
			</tbody>
		</table>
	</div>
</div>

NOTE:Your Email Address will be not shown and please do not add spamming comments because here is REL="NOFOLLOW" on your links and comments also moderated shown.
<code>Put html css or any language code under this tag</code>