Can I ask why you don't just use a link for these?
$("#welcome-sip").click(function() {
window.location ="http://www.net-vitesse.com/content/mclink";
});
$("#welcome-services").click(function() {
window.location ="http://www.net-vitesse.com/content/services";
});
$("#welcome-soa").click(function() {
window.location ="http://www.net-vitesse.com/content/product";
});
Mike Alsup wrote:
<script>
$(".welcome-picture").mouseover(function(){
$(".welcome-desc").hide();
$("#" + this.id + "-desc").show();
});
$("#welcome-sip").click(function() {
window.location ="http://www.net-vitesse.com/content/mclink";
});
$("#welcome-services").click(function() {
window.location ="http://www.net-vitesse.com/content/services";
});
$("#welcome-soa").click(function() {
window.location ="http://www.net-vitesse.com/content/product";
});
</script>
Can you see anything that I am missing ?
Looks like you're missing your 'ready' event handler:
$(document).ready(function() {
// your code goes here
});