Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 47 results for
jquey
- Page 1
jQury in master pages
Programming
Web Development
14 Years Ago
by sakhi kul
hi , I want to ajaxify my asp.net pages by using jQuery. I have downloaded ajaxify.js files and
jQuey
files also. but how to select contentplaceholder using jQuery? help me out!:(
Row insertion only after refreshing
Programming
Web Development
13 Years Ago
by bavenbabu
I am new to ajax
jquey
in programming.I had successfully inserted values which i posted …
Turn off qtip when content is empty
Programming
Web Development
12 Years Ago
by code_rum
…</font></a></td>";
Jquey
$(document).ready(function () { $('.buttonbar').each(function() { $(this).qtip( { content: { title…
Make jquery effect happen only on one instance of element at a time
Programming
Web Development
10 Years Ago
by suavedesign
Using
jquey
, I am making some elements on my site fade in …
how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by luke noob
i have a form with some hidden fields..... index.php page.... [code="php"] <form id="addReplyForm" method="post" action=""> <input type="text" id="target" name="commentreply" /> <input type="hidden" id="session_id" name="…
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by pritaeas
You can use [url=http://api.jquery.com/jQuery.getJSON/]this method[/url] if you return your values as JSON.
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by thejimgaudet
I think you will need to run that PHP file through a .post() command, that will return the values you want, the session ID comes from php session, so you don't need to pass that with the post.
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by luke noob
i have looked it up but i have nothing to send to get the values back, the values are already done i just need to retrieve them.
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by thejimgaudet
okay, give me a little bit. I have to finish this work and then I will write the pages for you.. :)
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by luke noob
any help would be appreciated thanks :)
Re: how can i add php variable when .click() text feild using jquey/ajax?
Programming
Web Development
14 Years Ago
by thejimgaudet
okay, I see where you are having your problem, before I go working on a longer solution, why wouldn't you just run the PHP code before the form and then add the values right away, since they are hidden. Then, you wouldn't need that click function at all. [CODE] <input type="hidden" id="page_id" value="<?php echo $…
Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by newbie14
Dear All, In my database I store different vehicles. So each vehicle have different setup of the wheels e.g some 2 infront and 4 at the back some 2 infront and 8 at the back etc. So based on this configuration I would like to programmatically show all the wheels layout. I am planning to use table method is that advisable? Thank you.
Re: Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by diafol
Tables are for data, not image display. Images are inline elements anyway, so why not just add a set of axles in the middle of the front and back bits: FRONT # MiddleSplit @ BACK Add images to # or @ as required, where FRONT is the front image of a generic vehicle (1 axle), BACK is the back image (1 axle), MiddleSplit is the 'spacer' between …
Re: Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by newbie14
Dear Ardav, What do you mean by inline element? So are you telling just for the front part e.g I got two wheels so this is how I arrange is it <img src="frontLeftWheel.png><img src"frontAxle.png"><img src="frontRightWheel.png>
Re: Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by diafol
Images are inline elements, so you shouldn't need a table to display them they should line up one after the other regardless. The only time that they won't is if the page is fluid and you resize the browser screen to less that the total width of the images. However, this can be circumvented by placing them within a fixed width div.
Re: Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by newbie14
Dear Ardav, So what is your comment about this sample say front part I got two wheels so this is how I arrange <img src="frontLeftWheel.png><img src"frontAxle.png"><img src="frontRightWheel.png> ? Is that ok or you have other ideas?
Re: Arrange images dynamically and jquey functionalities
Programming
Web Development
14 Years Ago
by diafol
I have no comment as I don't know how it looks. How about a screenshot?
Problem with jquey ajax
Programming
Web Development
12 Years Ago
by Martin C++
Hello, I have a small problem with my script. The ajax calls php file but it wont finsih successfully. Instead it goes to error: callback. My javascript part: function updateUserlist(){ $.ajax({ type: "POST", url: "process.php", data: {"function": "userList", "n_users&…
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by stbuchok
If you navigate to process.php, what do you see? Also, for the error function, add a parameter (data) to it so that you can see what error is coming back.
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by minitauros
> Also, for the error function, add a parameter (data) to it so that you can see what error is coming back. What stbuchok says :). Usually when I get an error it's because the specified file cannot be found. Javascript does not always use the same working directory as PHP, so make sure you specify the exact location to the file you want to …
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by Martin C++
The above php script is my process.php (A part of it, there are other cases too). Minitauros that is not a problem. Because I have already determined that the function is called, it's just that the ajax doesnt work. I have an analog function and this one work just fine. I have compared them and they are almost the same. I cant figure out why my …
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by stbuchok
What is the error that is being returned?
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by Martin C++
No error is returned, thats what makes it so difficult to debug.
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by stbuchok
In your error callback you have no parameter. This parameter is what would house the error message that you could look at to determine what the issue is. This is why I said: **"Also, for the error function, add a parameter (data) to it so that you can see what error is coming back."** So, please, add this and tell us what the error …
Re: Problem with jquey ajax
Programming
Web Development
12 Years Ago
by Martin C++
I fixed it. The problem with was that when I commented out the code, I had not comment the extra bracket out, so thats why I didnt get success in my "debug mode". And the reason that the script was initially not working was the fact that I sent the script `$_POST['n_users']` but the script waited `$_POST['n-users']`. So now it's working. …
Re: HTML Form , Validate & Preview in Same Page
Programming
Web Development
10 Years Ago
by vramsngrai
why did you not using
Jquey
?
Jquey
is easy to use
Re: how stop function
Programming
Web Development
15 Years Ago
by Lolalola
… for beginner info, samples? Now i searching in [url]www.
jquey
.com[/url], But maybe there are analogies? Thanks for help
Re: I want to validate new password with repeat password befor user press submit.
Programming
Web Development
15 Years Ago
by ayesha789
light box using
jquey
.
Re: Value in input feild from DB before Submit
Programming
Web Development
14 Years Ago
by ayesha789
…|$mfr|$mfm|$mfk\n"; } ?>[/CODE] I use this
Jquey
code to get data [CODE]<script type="text…
Re: need help with javascript calendar
Programming
Web Development
14 Years Ago
by morteza_ipo
…! This is a an example for ajax sending data with
jquey
! this code is for b.php [CODE] <html>…
1
2
Next
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC