Hello! Help please understand, I do not understand how to implement it.
There are for example 4 fields on the site when editing the material. The address of the page is: http://site.ru/edit?url=site.ru/doc1&title=Тут+назваие+статьи&description=Описание&user=Admin
How from the address bar to expand all the fields?
title - in the field with id "title"
url - in the field with id "url", etc.
There is such code:
<script type="text/javascript"> $(document).ready(function () { if(location.search) { var title = location.search.toString(); $('input').val(decodeURIComponent(title.split('?title=').join(''))); } } ); </script>