Tagged Questions
0
votes
0answers
16 views
How to do I redesign a Flash based table page into something AJAX? [closed]
Shortly, I will be redesigning this page: https://www.misoenergy.org/MarketsOperations/RealTimeMarketData/Pages/LMPContourMap.aspx
It currently uses a Flash object to draw the table you see from the ...
0
votes
4answers
168 views
Can I include a robots meta tag outside of the head in HTML snippets indeded to be AJAXed?
I have a number of files in my site which are not intended for independent viewing, but rather to be AJAXed into content within the site. They obviously don't meet HTML standards (no body, head, etc.) ...
2
votes
2answers
106 views
How to get search engines to properly index an ajax driven search page
I have an ajax-driven search page that will allow users to search through a large collection of records. Each search result points to index.php?id=xyz (where xyz is the id of the record). The initial ...
3
votes
1answer
117 views
Would using AJAX only “Add to Cart” buttons be wise?
I want to AJAX enable all of my Add To Cart buttons because search engine bots are indexing these and not paying attention to my robots file or site map. I just don't want to loose potential ...
3
votes
4answers
260 views
SEO optimization for AJAX site and dynamic HTML canvas
I have a site that uses AJAX to query the Last.fm database and then dynamically draws a graph of the results on an HTML canvas. In the search function, I have a command that sets window.location.hash ...
1
vote
2answers
462 views
Best way to use static HTML + AJAX with Django
I'm working on a web app and decided that for the max amount of speed I'm going to make it a single page. Then load all the content via AJAX pulling the data from a Django app. My options as I see ...
0
votes
2answers
442 views
Sidebar for Navigation in Website
I want to have a sidebar in my website with navigation in it.
I will use script like phpBB etc. but I want sidebar to be displayed on every page.
So I am thinking about making a Sidebar in HTML and ...
2
votes
4answers
638 views
Webpage Post Submits vs AJAX?
Which is better and why?
I can see where a site that works 100% in AJAX might optimize a bit better, due to not having to reload the page on each click.
But I am a huge fan of the big submit button ...