Skip to content Skip to sidebar Skip to footer

How To Redirect To A Specific Tab Using Jquery

Here is the code that I'm currently using for tab function.In tab3 content i'm performing a search function and load search data to a data grid view.But when there is no data from

Solution 1:

Use the click method. If no results are returned on tab 3, try:

$('[href="#tabs-3"]').click();

this will return you two tab 3 regardless of the results.

Post a Comment for "How To Redirect To A Specific Tab Using Jquery"