PDA

View Full Version : ajax question


MAORBARI
07-24-2009, 11:44 PM
how i use ajax in vbulletin?
what the function of the request and i use it?
thx for help.

HMBeaty
07-24-2009, 11:51 PM
<a href="https://vborg.vbsupport.ru/search.php?searchid=12914337" target="_blank">https://vborg.vbsupport.ru/searc...rchid=12914337</a>

Dismounted
07-25-2009, 04:37 AM
Very simple to initiate an AJAX request. vBulletin uses the YUI JavaScript framework.
YAHOO.util.Connect.asyncRequest('POST', scriptpath + '?do=ajax', {
success: this.handle_ajax_response,
failure: this.handle_ajax_error,
timeout: vB_Default_Timeout,
scope: this
}, SESSIONURL + 'securitytoken=' + SECURITYTOKEN + '&foo=' + foo);

@Brooks: Links with search IDs won't work after vBulletin cleans up. ;)

IdanB
07-25-2009, 06:10 AM
I've posted yesterday tutorial i called "[How-To] AJAX in your Mods - In 5 simple steps" - describing this in a very simple & easy to understand way.
Just follow my sig link and then click "tutorials" section on top tab.

ragtek
07-25-2009, 06:38 AM
I've posted yesterday tutorial i called "[How-To] AJAX in your Mods - In 5 simple steps" - describing this in a very simple & easy to understand way.
Just follow my sig link and then click "tutorials" section on top tab.
Sorry, but your tutorial is not very good.

You shouldn't use the vb ajax handler anymore, instead the developers should use the method yui is providing!
Look at the code, the vb devs have commented it.... ;)

MAORBARI
07-25-2009, 09:19 AM
<script type="text/javascript">
<!--
function iimsg()
{
thisstring = message.value;
YAHOO.util.Connect.asyncRequest('POST', 'savept.php?content=' + thisstring, {
success: msgstr.handle_ajax_response,
failure: msgstr.handle_ajax_error,
timeout: vB_Default_Timeout,
scope: this
}, SESSIONURL + 'securitytoken=' + SECURITYTOKEN + '&foo=' + foo);
}

function Leaving() {
iimsg();
}
//-->
</script>

why it is dont work?
thx.

Dismounted
07-25-2009, 10:38 AM
What are you actually trying to achieve with AJAX?

MAORBARI
07-25-2009, 12:34 PM
i try to save the content of the posts that users write when they quit in mistake.
i mean that i do "<body onunload="savept(($editorid}_textarea)">" and i do ajax function..
but this dont work..
i try to add to textarea that his name is "message" action "onkeyup" ad do alert and it is dont work too.
why it is dont work?
thx.

MAORBARI
07-27-2009, 04:42 AM
someone?

Dismounted
07-27-2009, 06:20 AM
The browser does not initiate any JavaScript events when a user decides to close the page. The browser just closes...