बुकमार्क का उपयोग करें। उदाहरण के लिए, आप निम्न कोड के साथ एक बुकमार्कलेट बनाने के लिए http://userjs.up.seesaa.net/js/bookmarklet.html पर उपकरण का उपयोग कर सकते हैं :
(function(){
var post_to_url = function(path, params, method) {
var openWindow = window.open(path);
method = method || "post";
var form = openWindow.document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
openWindow.document.body.appendChild(form);
form.submit();
};
post_to_url(
'http://www.chronopost.fr/transport-express/livraison-colis/engineName/search/accueil/suivi',
{search:'test'});
})()
तो फिर अपने पसंदीदा ब्राउज़र में बुकमार्क के रूप उत्पन्न बुकमार्कलेट लिंक का उपयोग करें। जब आप इसे क्लिक करें, यह, एक खिड़की खुल मानकों के साथ एक फार्म का निर्माण करेगा {search:'test'}
, और कहा कि फ़ॉर्म सबमिट करें।
URL और पैरामीटर बदलने के लिए, बस उस अंतिम कॉल को ट्वीक करें post_to_url
।
इस रणनीति महान हो सकता है अगर आप सिर्फ एक बार और यह समय की एक बहुत का उपयोग करें बुकमार्क बनाने के लिए की जरूरत है। हालांकि, यह यह बहुत आसान नई बुकमार्क बनाने के लिए यदि आप ऐसा करने के लिए एक नियमित आधार पर की जरूरत नहीं है।