Problem using Flot charts on a jQtouch web site
By : Lilliane Waelder
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further I have managed to use http://highcharts.com/ and jQtouch together ... however I don't have an example right off the bat to show you. Take a look a HighCharts tho, I switched to it from Flot and never looked back.
|
JQTouch AJAX Link / Content wont load into jqtouch
By : cheafnebur
Date : March 29 2020, 07:55 AM
it helps some times On my index.html file, I have a link to a script: , OK, I figured it out... slideSelector: "div#myList a"
|
JQtouch image linking
By : Jawad Malik
Date : March 29 2020, 07:55 AM
it helps some times This is a bug in using the jQTouch on the main site (or from the downloads in google code). The issue is reported here: http://code.google.com/p/jqtouch/issues/detail?id=103. To fix this issue, use the newest in svn or any jqtouch r113 on higher. (The one in svn is r148 currently and the one from main site is r109.)
|
Adding css/js files to the home site in the admin's panel django
By : Soundar Dilip
Date : March 29 2020, 07:55 AM
This might help you Are you trying to make your custom javascript appear on all admin pages? Then the best thing to do is to override the default admin templatte. Look in your django installation and find django/contrib/admin/templates/admin/base.html make a copy of it in templates/admin in your project folder. Then simply add the following to the html. code :
<script scr="my_code.js" type="text/javascript"></script>
|
How to route from site.com/home to site.com/home.html (remove .html) in htaccess?
By : Branfy
Date : March 29 2020, 07:55 AM
I hope this helps . Many sites have URL addresses like this: , To remove .html extension use: code :
#remove html file extension-e.g. https://example.com/file.html will
become https://example.com/file
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.html -f
RewriteRule ^(.*)$ $1.html [NC,L]
|