Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

page html

<ul>
    <li><a href="index.html?page=1">blabla</a></li>
    <li><a href="index.html?page=2">blabla</a></li>
    <li><a href="index.html?page=3">blabla</a></li>
    <li><a href="index.html?page=4">blabla</a></li>
    <li><a href="index.html?page=5">blabla</a></li>
    <li><a href="index.html?page=6">blabla</a></li>
</ul>

<div id="result">
var page;
switch('page'){
    case "home" : .load("/");
    break;
    case 2 : .load("home.php");
    break;<br>
    case 3 : .load("feachs/boutique.php");
    break;
    case 4 : windows.location("hello.html");
    break;
    case 5 : .load("http://www.kouli.fr/support/apropos.php");
    break;
    case 6 : windows.location("http://www.kouli.fr/modules/affiche.php");
    break; 
    default : .load("modules/alert.html");
}
share|improve this question
1  
you did not ask a question, maybe your code is not intended to work – Ibu Nov 14 '12 at 18:40
please format your code. – Sirwan Afifi Nov 14 '12 at 18:45
What problem are you encountering with that code? – Joe W Nov 14 '12 at 18:59
Does SO have enough disk space to store all the problems in that code? :) – Barmar Nov 14 '12 at 19:00
Since there's no <script> tag, this is just text that will be displayed on the web page, it's not going to "do" anything. – Barmar Nov 14 '12 at 19:02
show 1 more comment

closed as not a real question by Ibu, Ram kiran, stema, ThiefMaster Jan 23 at 7:36

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

up vote 0 down vote accepted

Please take time to ask a question and tell us what is not working. We can only assume what is not working, and so far all i see are multiple syntax errors:

.load("...");

This will cause a syntax error. i am assuming that you are trying to use jquery load function. so please read here is how it works

Example:

 $('#result').load('ajax/test.html');
share|improve this answer
I know and I got it in my page but I need a reel switch statement on my website thx – Mireliria Nov 14 '12 at 19:06
what is the problem? – Ibu Nov 14 '12 at 19:09
I think in a web page html it's more complicate than php; like this <? if(isset($_GET["page"]) && $_GET["page"] != "#000' onload='alert(document.cookie)") { switch($_GET["page"]) – Mireliria Nov 14 '12 at 19:15
please try to read your code and see if it makes any sense, – Ibu Nov 14 '12 at 19:56
Thank you very much for your answers all every body, and thkx Ibu it s good!! Have a merry christmas – Mireliria Dec 13 '12 at 13:03
show 1 more comment

Remove the quotes around switch ('page').

You want to check the variable page, not the string 'page'.

Apart from that, there are several other quirks in your code, please format it correctly.

share|improve this answer
Thank you David but var page doesn't work for me. Since yesterday I pulls my hair :( – Mireliria Nov 14 '12 at 19:06

try this code.

   <script src="./components/com_jumi/files/js/jquery-1.7.1.min.js"></script>
 <ul>
    <li><a href="index.html?page=1">blabla</a></li>
    <li><a href="index.html?page=2">blabla</a></li>
    <li><a href="index.html?page=3">blabla</a></li>
    <li><a href="index.html?page=4">blabla</a></li>
    <li><a href="index.html?page=5">blabla</a></li>
    <li><a href="index.html?page=6">blabla</a></li>
 </ul>

    <div id="result"></div>
<script type="text/javascript">
var page;
switch(page){
   case "home" : $('#result').load('/');
   break;
   case 2 : $('#result').load('home.php');
   break;
   case 3 : $('#result').load('feachs/boutique.php');
   break;
   case 4 : windows.location('hello.html');
   break;
   case 5 : $('#result').load('http://www.kouli.fr/support/apropos.php');
   break;
   case 6 : windows.location('http://www.kouli.fr/modules/affiche.php');
   break; 
   default : $('#result').load('modules/alert.html');
 }
</script>
share|improve this answer
function ei (event) {
    event = event || window.event;

    switch (event.keyCode) {
        case 1: 
        case 2:
        ...
            event.preventDefault();
            break;
        default:
            break;
    }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.