Begginer\'s question.
Can I use PHP in javascript?
For example in jquery,
... ... triggers.eq(1).post(\'
PHP is executed on the server side and JavaScript on the client side. But you can print the PHP variable like this:
triggers.eq(1).post();
And then the output is like:
triggers.eq(1).post('admin/categories/delete/12345');