I am using the qTip plugin to post a imdb URL to an IMDB grabber script and display movie info on that url.
Everything works until I have more than one qtip on the page.
What i need to do Is only post the data of the image that is being hovered. This is the code should make a bit more sense then me.
Script -
var link = $("#link").val...
I apologize in advance, I am a PHP noob!
I have form with some hidden fields. I need the values to POST to "submit_rma.php" so that they're not missing from the db--I need $qty, $estmate_id and $rma_type.
The rest of the fields are just displaying data for the user and are readonly. Currently I only get value from the qty text field.
...
Ok this is my application :
An Android app to allow me to submit CokeZone codes into CokeZone.co.uk from a mobile app instead of from the website.
So I wrote this section of code to do the post logon command and then check to see if im logged in after.
Problem is - the html I get from the homepage after I send the post command is the ...
Just started with JQuery and I've managed to pass a parameter using POST, firebug confirms this:
Parameters
link [email protected]
Source
link=test1%40test.com
I don't know how to access the link parameter from the receiving page using JQuery, it must be so simple but everything I've been searching through (jquery website, SO, etc) me...
We're using CKFinder for one of our sites, which has been working fine for us until we moved to a new dedicated server (which is similar but not exactly the same as the old server). Now we cant upload, the AJAX request simply never finishes.
From monitoring it in Firebug it attempts to POST to here:
http://www.site.com/temp/ckfinder/cor...
hi,
UPDATE: set the mimetype to application/json and it works.
In the website I'm working on (http://piem.org:8000/) I've got an issue with an ajax post request.
Every time the search button is clicked or the google maps 'idle' is triggered I send a request to get some data. While the request works as expected in most cases, it returns...
Dear community,
I just want to have my question posted here but just from the beginning:
For a personal web project I use PHP + JQuery.
Now I got stuck when I try to use the ajax posting method to send data to another php-page. I planned to have some navigational elements like next + previous on the bottom of the page by saving the us...
hi,
when creating and sending an http POST request like this...
var req = new qx.io.remote.Request("/test","POST");
req.setParameter("pi", "3.1415");
req.setParameter("color", "red");
req.setParameter("password", "mySecretPassword");
req.send();
... paramters are send in the body and in the url...
Hi everyone,
I am using a lot of HTTP Requests in an application that I am writing which uses OAuth. Currently, I am sending my GET and POST requests the same way:
HttpConnection connection = (HttpConnection) Connector.open(url
+ connectionParameters);
connection.setRequestMethod(method);
co...
Search for good JAVA lib for playing with POST-GET requests - Is there any such lib or how to play with POST - GETS from pure JAVA? How to create costume headers and so on.
...
I want to delete a row in my database and found an example on how to do this with jQuery's $.post()
Now I am wondering about security though..
Can someone send a POST request to my delete-row.php script from another website?
JS
function deleterow(id) {
// alert(typeof(id)); // number
if (confirm('Are you sure want to delete?'))...
I am posting a form using HTMLUnit webClient by putting the username and password but it could not logging me in. When i research then found out that they have enable csrf on post request so native web browser is required. Is there any way to login (post form) in csrf enable website using HTMLUnit or any other tool in Java or it is impos...
I'm trying to connect to a custom http service written by another developer.
The service responds fine on a local IP address and port number. Such as: http://10.1.1.1:1234 but it does NOT respond to http://localhost:1234 or http://127.0.0.1:1234
The service is a simple single function application written in VC++ that takes an http pos...
Hi , I have a html form with the data by this post method
'form id='form1' name='form1' method='post' action='process.php'etc '
to a php page for processing into a mysql database . When the user has filled in the form BEFORE submitting it I have a button that the user can click to open up a new page to display a pdf of the data ent...
I have build a webapplication using ASP.NET MVC and JQuery. On my local machine this works fine,but when moving it to a Windows server 2003 the JQuery method post stops working. I'm also using the load method and this works fine.
function methodOne(id) {
alert("debug1: <%= Url.Action( "MethodOne", "controller" ) + "/" %>" + id);
...
I've had troubles for a few days already with handling form that contains dropdown list. I tried all that I've learned so far but nothing helps. This is my code:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using CMS;
using CMS.Model;
using System.ComponentModel.DataAnnotations;
namespace Portal....
Greetings!
I'm doing a Form on ASP.NET MVC 2, in my view I have a TextBox for the name, and two buttons.
One of the buttons is for submit, and the other one have a function in JS, that add's another textbox, and a drop down list.
In the post controller action method, how do I get all the parameters?
Here is the View Code:
<body>
<...
Hello,
I've decided to go with jQuery for all my AJAX related client side needs.
But jQuery has way too many functions for the same task: $.post, $.get, $.ajax, $.getJSON...
My question is what should I use?
EDIT:
I'm going to use POST and JSON to connect to CodeIgniter PHP framework.
Thank you.
...
My current aspx form askes users to input fields into texbox and press submit button. We are thinking of using PUT method that read parameters from the URLs? Any quick solution for this?
...
This is a basic post form in PHP that loads from the client PC. What is the proper syntax to load from a directory on the server?
<form enctype="multipart/form-data" action="index.php?option=com_productionparse" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="90000000000" /><br />
Choose a file to upload: <input name="f...