I would ask for any user who knows how to program in jquery and prototype of a help to me in the following code in this prototype.
function showPanelAds(){
$('ads').style.visibility="visible"
}
and
function blog(id){
var ActionAjax = new Ajax.Updater(
{success:'blogphere'},
'/inc/assistidos.asp',
{
method:'get',
parameters:'queryname='+id,
onFailure:function(){
$('blogphere').innerHTML="error...<br/><a href=\"javascript:blog('"+id+"')\">Tente novamente</a>";
}
});
}
thank you from anyone who can help me.
thank you.
I don’t know Prototype very well, but this should be the jQuery equivalent I believe.
Docs
$.ajax()– http://api.jquery.com/jQuery.ajax/$.css()– http://api.jquery.com/css/$.html()– http://api.jquery.com/html/$.append()– http://api.jquery.com/append/