Jstablesorter Plugin Does Not Apply Style
I'm trying to use jsTableSorter plug-in with Blue theme. Unfortunately following code doesn't apply the style. Would you please help me to locate the issue.
Solution 1:
Your jQuery is v1.4.2 and your tableSorter version is 2.05b and your CSS has many missing parts. Here is the solution if you do not really need to work with those versions.
replace following lines
<linkrel="stylesheet"type="text/css"href="http://dl.dropboxusercontent.com/s/799k8f76ukikxa8/style.css" /><scripttype="text/javascript"src="http://dl.dropboxusercontent.com/s/5c8cuzcww0bjua4/jquery-latest.js"></script><scripttype="text/javascript"src="http://dl.dropboxusercontent.com/s/2gbxvhkskdsch5p/jquery.tablesorter.js"></script>
with
<linkrel="stylesheet"type="text/css"href="http://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.17.1/css/theme.blue.css"><scripttype="text/javascript"src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script><scripttype="text/javascript"src="http://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.17.1/jquery.tablesorter.min.js"></script><scripttype="text/javascript"src="http://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.17.1/jquery.tablesorter.widgets.min.js"></script>
and this one
theme:'default',
with
theme:'blue',
just pointed the latest versions from a CDN and changed the theme name as it points out in comment.
Post a Comment for "Jstablesorter Plugin Does Not Apply Style"