26/07/2012, 04:18
|
| | Fecha de Ingreso: julio-2012 Ubicación: Valencia
Mensajes: 13
Antigüedad: 12 años, 3 meses Puntos: 0 | |
Respuesta: Problemas con código js Vale lo puse así
Código:
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script><
script type="text/javascript" src="http://www.nikektv.es/phpbb/js/jquery.qtip-1.0.0-rc3.js"></script><script type="text/javascript">
var $jq = jQuery.noConflict();
$jq(document).ready(function(){
/* Functions */
function featuresHash() {
var hashValue = window.location.hash.toString().split('#')[1];
if ($jq("a[name='" + hashValue + "']").length != 0 && hashValue.length != 0) {
$jq("a[name='" + hashValue + "']").closest("div.feature-item-content").removeClass("unselected");
$jq("a[name='" + hashValue + "']").closest("div.feature-item-content").addClass("selected");
$jq("a[name='" + hashValue + "']").closest(".features-item-content").toggle();
location.hash = '#' + hashValue;
}
}
$jq(document).ready(function(){
$jq(".features-item-content").hide();
featuresHash();
$jq(".features-item-head").click(function() {
if($jq(this).hasClass("unselected")){
$jq(this).removeClass("unselected");
$jq(this).addClass("selected")
}else{
if($jq(this).hasClass("selected")) {
$jq(this).removeClass("selected");
$jq(this).addClass("unselected")
}
}
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
});
$jq(".expandall").show();
$jq(".expandall span").text("Expand all");
var a=false;
$jq(".expandall span").click(function(){
if(a==false) {
$jq(".features-item-content").hide().toggleFadeSlide(300);
a=true;
$jq(".expandall span").text("Collapse all");
$jq(".features-item-head").removeClass("unselected").addClass("selected")
}
else {
$jq(".features-item-content").show().toggleFadeSlide(300);
a=false;
$jq(".expandall span").text("Expand all");
$jq(".features-item-head").removeClass("selected").addClass("unselected")
}
});
$jq("span.feature-collapse").before('<img src="http://www.phpbb.com/theme/images/features/sm-arrow-up.gif" alt="Collapse" class="floatleft collapse" />');
$jq("span.feature-collapse").show();
$jq("span.feature-collapse").click(function() {
$jq(this).parent().toggleFadeSlide(300);
$jq(this).parent().parent().children(".features-item-head").removeClass("selected").addClass("unselected")
});
$jq("span.define-gpl").qtip({
content:"What does this mean? Quite simply, you can use phpBB for whatever purpose you wish provided 1) You keep our copyright in the source and 2) If you distribute the code, it's also released under the GPLv2.",
style:{
fontSize:11,
lineHeight:1.2,
name:"cream"
},
position:{
corner:{
target:"topMiddle",
tooltip:"bottomLeft"
}
}
});
$jq("span.define-hash").qtip({
content:"Think of hashing as one-way encryption. There's no way to get the original text via decryption, so it's much safer.",
style:{
fontSize:11,
lineHeight:1.2,
name:"cream"
},
position:{
corner:{
target:"topMiddle",
tooltip:"bottomLeft"
}
}
});
$jq("span.define-captcha").qtip({
content:'CAPTCHA stands for "<strong>C</strong>ompletely <strong>A</strong>utomated <strong>P</strong>ublic <strong>T</strong>uring test to tell <strong>C</strong>omputers and <strong>H</strong>umans <strong>A</strong>part." Weird name, awesomely effective.',
style:{
fontSize:11,
lineHeight:1.2,
name:"cream"
},
position:{
corner:{
target:"topMiddle",
tooltip:"bottomLeft"
}
}
});
$jq("span.define-utf8").qtip({
content:"UTF-8 stands for Universal Character Set Trasformation Format - 8-bit.",
style:{
fontSize:11,
lineHeight:1.2,
name:"cream"
},
position:{
corner:{
target:"topMiddle",
tooltip:"bottomLeft"
}
}
})
});
});</script>
Y me manda los siguientes errores Cita: TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413)
TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413)
TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413)
TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413)
TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413)
TypeError: $jq(this).parent().children(".features-item-content").toggleFadeSlide is not a function
[Parar en este error]
$jq(this).parent().children(".features-item-content").toggleFadeSlide(300)
index....eatures (línea 413) Es decir, que no cambio demasiado, el script sigue sin funcionar, hice mal algo? |