Hi Everyone!
I'm new to using CURL, but I have successfully got it to submit ordinary forms in the past. I'm working with a website that uses an AJAX Request to perform a login, I can get the form to fill out the username and password but since the login button is actually a link I can't get the form to submit, is there some other way ...
I've added a ckeditor editor instance to my asp.net application. Now, I want to capture when the user clicks on the save button in the ckeditor toolbar - but I haven't been able to find what event is triggered by ckeditor when the save button is triggered. Does anyone know?
...
Hi!
I’m trying to link two dropdownlist depending on the value you select from the first dropdownlist.
I don’t have any idea how to do this, so if you guys can point me in the right direction that would be great.
What I want to do is select a value from the first dropdownlist and depending on its value show some options in the second dr...
Hello,
I have the following jQuery script:
$(document).ready(function() {
$.ajax({
url: 'temp.ajax.php',
type: 'GET',
success: function(data){
$("#total_plus_aditional").val(data);
}
});
tempTotal = parseFloat($("#total_plus_adi...
I have a page which allows a user to view and edit times (with dates) stored in a database. The times are stored in the database in UTC and attached to a location with a different timezone. When the user views the times they are shown in the attached timezone and not necessarily the timezone of the browser. The user should then be able t...
Hello all,
I'm new to web programming, but I had an idea I could use as an instructional tool, and I was hoping I could get some guidance.
Here's my idea: I want to have some form that takes the data entered by the user, submits each word in the form to google images, and retrieves the first image returned by Google Image Search. Eac...
Hey guys I'm running into a weird issue.. Basically, a user logs into a page and based on his role status(admin or user) determines how many tabs he sees in a tabcontainer. If he is just a "user" then tab index 0 and 1 need to be hidden because they contain admin only functionality.
Doing this is simple:
if(user)
{
Container.Tabs[0]....
I have a RadTabStrip that just refuses to show up when page loads or reposts. Not certain what I would need to do to get this working at this point. No where in my code do I disable the control for it not to show up when loaded.
The Tabcollection is filled on postback, so I am not certain why this is happening. Even explicitly sett...
hi,
I have a continous ajax request asking for some data
that is to be displayed in textarea.
Now my problem, how do I display the data as soon as page is loaded.
My template code is as follows:
<html>
<head>
<script type="text/javascript" src="/jquerycall/"></script>
<script type="text/javascript">
$(document).ready(fun...
fanceybox not working on ajax page
here is my code
$(document).ready(function(){
$("a.link8").livequery(function(){
$(this).fancybox({
'width' : '75%',
'height' : '75%',
'type' : 'iframe'
});
});
plz some body help me
Thanks
...
i've read this article for ajax indexing
how can i do to read the state in a url like this with rails?
ex.
http://mysite.com/controller/action#!pid=1237604&id=1079297234
the state is:
pid=1237604&id=1079297234
thanks
...
hi all..i'm using jquery tabs..
i'm use tabs-1 as input form and tabs-2 as show input data...
i want after submit..all value inside textfield which have been type at tabs-1 can copy into textfield at tabs-2...
where part that i must modify?at form or at process page?what's code that can make it works?
<script type="text/javascript">
...
Hi,
I am working on a codeigniter site, the client has requested that the price columns in a datatable are hidden from view unless a user enters a correct password(which they will give out to clients over the phone).
The obvious way is to make the user login which then reveals a new table/page with prices included.
Can I achieve this...
Hi all! All I want to do is get a page and return the contents of it:
$.ajax({
type: "POST",
url: "alg.aspx",
data: sqQstring,
success: function(msg) {
alert("Data Saved: " + msg);
}
});
This doesn't make an alert box and there are no errors i...
I have a text box in my asp page which accepts wild card characters like say "abc a" which should be passed to backend as "abc%a"....Is there any ajax control built in for this type of wild card character as input...
plz help.
Thanks in advance
...
Hi, I am looking to build a form which updates an image in real-time.
Could someone help me out and tell me the best way to go about creating a form similar to this (languages, techniques, etc): http://www.demonplates.com/platebuilder.php
Where as you enter details the image is updated accordingly. The form will send to google checkout...
Hello I'm using ASP.NET C# 2.0. So I'm find Uploadify in Stackoverflow... Then I'must control my uploading folder for some past posted ID's. At the end if a file(s) uploadded i must send them with mail attachment...
I can't figure that in every posts they're using ashx file type. But as i said. I'm not Upload My files basicly i must con...
I have a button that uses jquery and ajax to call a server side script to create a text file and
sends back the following response
Response.ContentType = "csv";
Response.AddHeader("Content-disposition", "attachment; filename=" + fName);
Response.ContentType = "application/octet-stream";
Response.BinaryWrit...
Apologies in the laziness in my query, will try to be more specific.
OK- How can I modify the code below so I can guarantee that the fadeIn will only start after all the other actions have been done and all the images in the html have been loaded? Will I need to load the images via js with a callback on each? Some of the code in a $(win...
Hi every one I have a weird issue I been working with the Flickr API, in Flickr for make a connection with the server is through url format in my case something like this
http://api.flickr.com/services/rest/?method=flickr.photosets.getList&api_key=10cb3dccaa050efebdc01540c1d4d227&user_id=51390557@N07&format=json
If your r...