AJAX :: Comparison Solutions To Make Crawable?
Oct 14, 2011
I'm about to develop a heavily AJAX based website (this is because the website should look more like a brochure/leaflet). All of this should happen without harming it's SEO performance.I saw some solutions (but most articles were actually quite outdated).this is how I see it:
- One way to do it is by using a hash URL. something like www.website.com/#!/category/product
-- with jQuery you can make the hash change however you want
-- because of the '!', Google will ask for a HTML snapshot. Everyone is happy in that way.
-- Question: will these clean urls (so the /#!/... ones) have the same value for Google as the traditional ../category/product urls?
- Another way is to have standard links: like [url].....
-- Use 'Hijax' system, so catch the standard (server side urls) and get the content trough javascript httprequest
-- Google bot can just visit normal page instantly, for him this is just a normal site
-- Javascript disabled browsers will now be able to surf the website in a better way.
-- Only one page has to be created, and not 2 views as with the previous solution...
-- Question: I haven't seen how this is technically possible. So far I only saw /#/ websites.
What do you think about these 2 solutions? Which one is preferable? Do you have experience with one of them?
Edit: PS: it was difficult to choose in which section to put this topic (SEO or Javascript). But I guess there will be more javascript than SEO challenges in this development process.
View 1 Replies
ADVERTISEMENT
Mar 19, 2011
Been a while since i posted here so, hai again. This is weird to me, dont under stand it. I am new to Java and Ajax but PHP is my best friend. Basically, i have some Ajax that checks a PHP script and when done, the PHP Script will echo either 0 or 1 (success or fail).
[Code]...
View 5 Replies
View Related
Feb 28, 2010
Trying to validate a name... If it's in the database, return "exists" if it isn't return "newOne". I get "exists" or "newOne" back in my success function and set a variable (var ifExists) with that text, but when I try to do something based on whether ifExists = "newOne" or "exists", it always goes into the first part of the function...
jQuery:
var sendMenuName = "menuname="+menuname;
$.ajax({
type: "post",
async: false,
[Code]....
View 12 Replies
View Related
Oct 23, 2000
I know you can get remotely hosted Java applets that link into IRC.
You can also get Java applets that you host yourself that link into IRC.
I would prefer the second option because it is obviously more flexible with no adverts, but i am aware that it sucks up bandwidth. How much would this be, with an average of this :
once a week, 10 users in the chat room for 2 or 3 hours, typing an average amount.
View 2 Replies
View Related
Jun 24, 2010
Question: I need a few good idea on the best way to save a webpage (even better a node of a webpage) in which a user has created new elements. (via javascript?)
Concept: User creates elements on a canvas (via Javascript) then has the option to save the layout of those elements. upon pushing save the Javascript packages the created and/or changed elements and sends then to the server to be processed by PHP
and saved.
Hurdles: saved data must include style attibutes, text, child nodes and so on. The when other users view the page PHP will build the elements from the original user saved file.
What I have Done:I have managed to use Xmlserializer to output the "canvas" element in firefox and safri I have used .outputHTML in IE to complish the same thing.Of course there are a few differences when comparing the two strings, mainly having to do with commas.IE does not surround id's in commas and FF does. This has me thinking there has to be a better way more consistant way. on other ways to save dynamic elements using Javascript, and PHP.
View 1 Replies
View Related
Mar 13, 2006
I would like to know how to compare dates in javascript.
var sdate = new Date(theform.SubmissionDate.value);
var odate = new Date(theform.StartDate.value);
var todaysdate = new Date();
if(sdate < todaysdate)
{
alert("Submissionn Date should not be less than current date");
return false;
}
if(sdate < odate)
{
alert("Submissionn Date should not be less than opening date");
return false;
}
My above comparison does'nt work. can u suggest some way?
View 3 Replies
View Related
Jun 1, 2007
How would one go about comparing 2 strings one of which may contain
special entities (eg "cassé" and "cassé")?
I tried to find a way to take the second string and do a replace
whenever such entities are encountered but this implies creating some
sort of lookup table containing not all but a good number of entity
codes. Unless I am mistaken, javascript does not any function to replace
an entity-infested string with a decoded string, pretty much like php's
html_entity_decode. Another way, probably better (but I don't know),
would be to encode the first string.
View 3 Replies
View Related
Feb 14, 2007
I've this comparison with two numbers
if (t.minimum.value t.maximum.value) ...
yet it's always true except when minimum and maximum are identical. Why
isn't it false when minimum is smaller than maximum?
View 13 Replies
View Related
Jul 20, 2005
I have this function that checks formfields with an onChange. But it seems
to get my comparisons wrong. I've listed the function below, and give some
sample values here, the committed value is changed from 1000 to 1500 and
then gets a popup that it is greater than the Budget? Code:
View 1 Replies
View Related
Feb 9, 2009
I have this method: function rbc_init() {
var choice = document.getElementById('choiceKey6').value;
var searcher = document.getElementById('searchText').value;
if (choice == "Services")
{
var script = '/site/includes/az_search_results.php';
[Code]...
choiceKey6 is a drop down menu with the values "Services", "Documents", "Downloads", "Frequently Asked Questions". I've named it strangely because of the bug that causes IE's getElementByID to search both ID's and names. SearchText is just a textbox, but it is irrelevant to my problem.
My problem is that in firefox this works as expected, the string comparisons work and the code in the if statements is executed as expected. In internet explorer however, the algorithm always defaults to the else statement at the end. What have I done wrong? argh.
View 2 Replies
View Related
Aug 2, 2006
I have three fields that I want validated on a form. Item3 cannot be smaller than Item2 and Item2 cannot be smaller than Item1.
Below is what I had in mind:
Function validateForm()
{
If (Item3 < Item2)
alert="You must enter a bigger size for Item 3"
else
If (Item2 < Item1)
alert="You must enter a bigger size for Item 2
}
</script>
<form method="POST" action="Post.jsp" onsubmit="validateForm(this)">
View 4 Replies
View Related
Sep 29, 2005
I have 2 textbox for Date input: Start Date and End Date I have javascript onsubmit="return fieldCheck()" to check all the required fields are not empty.
My problem is that i want to throw below javascript to check that End Date cannot be earlier than the Start Date. It works if both dates are in the same month, and if they are different month or day, then it's not working properly
d1_str = document.form.txtEndDate.value;
d2_str = document.form.txtStartDate.value;
d1 = new Date(d1_str.split('/')[2],d1_str.split('/')[1],d1_str.split('/')[0]);
d2 = new Date(d2_str.split('/')[2],d2_str.split('/')[1],d2_str.split('/')[0]);
if (d1.getTime()<d2.getTime()) {
emptyfields += "
End Date can't be earlier than Start Date" ; //this is the error msg
}
View 3 Replies
View Related
Sep 19, 2006
I have a problem with Javascript, I need to do something fairly complicated and I'm not sure how. first let me explain what I am trying to do.
I need a user to be able to enter a single word in a text form on a page. i then need to seperate every character in that string to create new variables (example: var charater1 = string.charAt(0)) there are ten characters in total.
I then need to compare the character to find the appropriate integer number for it, for example A would equal the integer number 1. once I have converted all ten characters I then need to write them to a file, something like a text file or the like.
View 1 Replies
View Related
Jun 26, 2011
i have a question about string comparison there is html code
<table>
<tr>
<tr><th>no</th></tr>
<tr><th>name</th></tr>
[Code].....
View 2 Replies
View Related
Nov 30, 2010
Need pointing in the direction a script that can do the following:
Field A contains a date which is the the format dd/mm/yyyy format. Field B contains a date which is the the format dd/mm/yyyy format.
I want to check if B is greater that A , alse do an alert to user.
Code:
var d1 = Date.parse(f.Dep.value);
var d2 = Date.parse(f.Ret.value);
[Code]....
View 3 Replies
View Related
Sep 27, 2007
Can anyone sort out my problem.I want to build a product comparison page in javascript with checkbox i.e when a user click on the respective checkbox with images maybe 1 or more, then the comparison table should show on the same page.I am having about 10 products and 12 comparison categories to be compared.The user can check one checkbox or all....
View 24 Replies
View Related
Mar 31, 2010
Have a question regarding the comparison function on the At & t website URL...The site allows you to select different types of phones then generate a comparison chart based on your selection. I need to construct a similar comparison chart, but have no idea how to start the coding process.
View 1 Replies
View Related
Oct 30, 2005
I'm having trouble figuring out exactly how to write the confirmation/validation for the card expiration choices compared to the current date. I have the month and year choices in selection menus, as opposed to text boxes. Code:
View 2 Replies
View Related
Jan 23, 2011
why the string comparison test doesn't work in this javascript function? It works if you use just text between the currentItem div tags, but not when you use html for an image. I even tried to use iso characters instead of angle brackets, as in "<img src=expand.png></img>" and still no dice. Why not?
<html>
<head></head>
<body>
<script language="JavaScript">
function toggleValue()
{
if(document.getElementById("currentItem").innerHTML != "<img src=expand.png></img>")
{
[Code].....
View 3 Replies
View Related
Oct 8, 2011
I have been on this for over an hours now, it is probably something simple and/or stupid, but why doesn't this script work? I have read forums til my eyes are crossed and can't see what I am doing wrong I am new to javascript, but not programming. The point here is to create a function that compares two strings and then shows or hides a div depending on the results of the comparison. I was trying to pass in the name of the two input text boxes containing the text and the name of the div to show or hide (so that it can be used in multiple scenariios.) Right now my error message is that document.getElementById(field1).value is not a function.
Here is the code below..
View 6 Replies
View Related
Nov 23, 2011
i use below code for making JS as cachable in my browser,
$.ajax({
type: "GET",
url: "https://d3u46tuvnoj4ah.cloudfront.net/app/v1.1/war/js/jquery-1.5.1.min.js",
success: function(){},
dataType: "script",
cache: true
});
I need to make CSS also cached in my browser. how to i do?.
View 1 Replies
View Related
Oct 7, 2006
I've got a script that, onload, loops through every tag on the page (getElementsByTagName ('*')) and can be pretty slow on some of my pages with MANY tags.
What I'm wondering is if there's some way I can tell the browser to run the script asynchronously, without locking up the browser while it loops through all the tags and adds its objects and properties to them?
I'm pretty sure I've made the script about as effecient as possible. There's just no way around checking all the tags.
View 3 Replies
View Related
Nov 4, 2011
I cant make this work here is what I have in my logged_in.php file .
<html
View 5 Replies
View Related
Oct 10, 2009
I want to know how I can make a form validation using AJAX? I need a sample or an idea of how making my form validation using AJAX.
View 3 Replies
View Related
Oct 9, 2011
I'm trying to call the same Ajax get PHP from two different elements Onclick. The second one isn't working.
Index.js
Code:
function getproduct(p){
if(p==' '){
document.getElementById('f1').innerHTML=' ';
[Code]....
View 1 Replies
View Related
Dec 2, 2010
How know that for ajax call to different domain applies the same domain policy, but is there anyway to get around this using the cluetip plugin?
View 3 Replies
View Related