Tagged Questions
0
votes
1answer
15 views
How to set a variable from form submit for use in AJAX call?
I have the below form:
<form action="test.php" method="POST" onsubmit="loadXMLDoc(this.form); return false;">
<input class="com" type="text" name="test" />
</form>
Instead ...
0
votes
1answer
22 views
Algorithm to detect face and doing some manipulations in javascript or php
I am looking for algorithm (free or with little payment) which get a picture as an input (jpeg), and detect a face, and make a blue (or any color) background arround the face.
This algorithm should ...
0
votes
0answers
13 views
Tag user in a facebook post with javascript SDK and PHP
I'm trying tag a user in a post with th code below:
FB.api('/me/feed', 'post', {
message: 'Mensagem', name:'Test', description:"Test",
picture:"picture_address",
...
0
votes
0answers
6 views
Magento Checkout Error: redirects to shopping cart
When customer clicks register button at checkout, the register fields show momentarily, then there is a redirect to the shopping cart.
This only happens when guest checkout is disabled.
Here is the ...
0
votes
1answer
12 views
XMLHTTP Connection
So I have this code :
function checkStatus()
{
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
...
-3
votes
0answers
32 views
Processing the post action using jquery? [closed]
i have followed this examples in order to process my form using jquery without refreshing
the page
example : http://api.jquery.com/jQuery.post/
but it didn't work
i toke the example and ...
0
votes
0answers
16 views
Magento, Javascript and PHP
I'm trying to set up a page in a Magento environment with two forms:
http://test.smythjewelers.com/engagement-wedding/engagement-rings.html
One at top right and one at the bottom. The top form is a ...
0
votes
0answers
17 views
JQuery scrolling update feed
I'm looking to make a scrolling feed updater similar to what can be found at (www.snog.com).
This is my php so far integrated with js and jquery to add the newest actions to a table.
include ...
0
votes
0answers
33 views
Button Inline OnClick change per variable
I know since php is server side and JS is client side i can not change it that way.
Here is the button i am using
<button type="button" class="button fabriqButton2" ...
0
votes
0answers
7 views
Adjusting the jCrop plugin
I found this tutorial: http://www.script-tutorials.com/html5-image-uploader-with-jcrop/ ...I implemented it in my page and it works like it should. My question is: Is it possible, when the image with ...
-3
votes
4answers
83 views
How i can get POST value in javascript?
Hey there i want to ask how i can get php post value in javascript.
I mean in php it will look like this:
$x = $_POST["comentonpost"];
Here is the javascript code where i want "var x" to be equal to ...
0
votes
0answers
6 views
API Error Code: 191 for Share Dialog in facebook UI
API Error Code: 191 for Share Dialog in facebook UI
I've been trying to make the FB.ui to work. Unforunately, I keep getting an error:
An error occurred. Please try again later.
API Error Code: 191
...
1
vote
0answers
54 views
javascript function is not invoked at the first time onclick
I have a following code:
$this->content->text .=
'<div id="gv_block_div">
<a href="javascript:void(0)" onclick="pop('.htmlspecialchars($jsonObject).', ...
2
votes
3answers
74 views
update data in the div
I have a problem with updating the data I display from my db. Initially, when the page opens I display the date corresponding to the current date but then the user can change the date by entering it ...
-2
votes
1answer
39 views
No values being sent to my php script from ajax
Alright, so I am trying to make a [relatively] simple contact form that uses ajax and php to write that data into a database once the form is submitted. I don't get any errors in my javascript or my ...