EDIT: posted head code
EDIT 2: clarification on php
I have been designing a site for weeks using JQuery. I don't have a local server or a testing server so I just created a directory through FTP, '/testing'. Everything was working great in the testing directory.
I attempted to go live tonight by moving all the files in '/testing' to ...
I'm populating a list by cloning elements into it. Then I change attrs to make each item unique. They need to call a function on click, so I'm wondering if it's more efficient to use new_element.click(func); or new_element.attr('onlick','func();');
...
I'm trying to find out what data/error jquery's .load() method is returning in the following code (the #content element is blank so I assume there is some kind of error).
Where do I find in Firebug what content or error .load() is returning?
How can I use console.log to find out at least what content is being returned?
<!DOCTYPE ht...
I have made a flashLike button with jquery via this code:
$(document).ready(function() {
$('#navigation li a').append('<span class="hover"></span>').each(function () {
var $span = $('span.hover', this).css('opacity', 0);
$(this).hover(function () {
$span.stop().fadeTo(500, 1);
}, function () {
...
Hi i am trying to put multiple dialog boxes in a single page. i had downloaded demo for a single dialog box and apply same effect to different "div"s.. but it came on the same position. how can i put diff. dialog boxes in diff positions ? i has set styles for 2nd and 3rd "div"s; but its not working.. somebody please help me..
this is my...
TLDR:
Started with this question simplified it after got some of it working and continuing it here.
I need to 'GET' the JSON array
Format it correctly and for each within the array place it in the corresponding DIV.
??
It works.
This is a followup from this question to simplify and continue.
I need to some complicated JSON data f...
I get an empty response back from this local WebService call via jquery / ajax.
I have verified the URL and XML input string by invoking the call in a browser.
I DO get XML code back as expected.
What am I missing? Could it have something to do with the return type "XmlDocument"?
I have tried changing out text/xml to text. No affec...
Hi guys,
i want to use the Datepicker for highlighting specific dates. Here is my latest code:
<script type="text/javascript">
var dates = [30/04/2010, 01/05/2010];
$(function(){
$('#datepicker').datepicker({
numberOfMonths: [2,3],
dateFormat: 'dd/mm/yy',
beforeShowDay: highlightDays
}...
Hello
I want to fill a form and submit it using my application but the form that i am filling and submitting is a different webpage. Is this possible using Jquery or any other way.
Example: my application name formfiller( let the url be www.formxxxx.com) now i want using formxxxx/xyz.jsp i want to fill and submit a form that is presen...
Hi. What is the best strategy to supply a necessary new version of jQuery (1.4.2) in a userscript, which modifies a page that already has an older version of jQuery (1.3.1)?
Preferably the original page continues to use '$' sign while in my script it uses an alias assigned by jquery.noConflict().
According to the answer to this questi...
am trying to integrate the jquery Full Calendar (http://arshaw.com/fullcalendar/) in my asp.net 3.5 with c# application.
I need to use this full calendar to add/edit/delete/show the events using the sql server 2005 database as backend.
Do anyone have the sample code to implement the fetch, add/edit/delete events with this Full Calenda...
hello
i have created a table on my application same follwing code
<table class="spreadsheet">
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
</tr>
</table>
i select a row by click with following jquery code
$("tr").click(function(){
$(this).toggleClass("otherstyle");
}
and my css i...
Hello all!
I need to update a specific table row (via tr id="unique_key") after a successful AJAX call.
HTML fragment:
<a name=\"p{$product_id}\" class=\"tr{$product_id}\"></a>
<tr id="p{product_id}" class="item-row">
<td><h3>{product_id}</h3><a rel="facebox" href="ajax_url">{product_name}</a></td>
<td>{image_information}</td>
<td>{im...
Hi,
I have a login control on my homepage (http://www.xyz.com) which makes a JSON login request over HTTPS (https://www.xyz.com/json.ashx). This seems to work fine in Firefox and IE7. But IE8 gives a 'permission denied' error for jquery.min.js
I have verified that this call works fine if its solely over http or https.
Is the call cons...
Hi,
I am developing one website using cakephp and jquery technologies.
Server-side there are some functions which handles sql queris.
As per requirement I want to modify server side functions on client side using jquery AJAX call.
E.g. : Below is the function on server side to modify users information.
function modifyUser(username,us...
hi, I'm using jquery-plugin columnizer
http://welcome.totheinter.net/columnizer-jquery-plugin/
It is sometimes very slow to create the columns (you can try changing the browser window size, or selecting a filter.
Sometimes Firefox gives the error message: "Unresponsive Javascript script" and I have to press on continue to continue the ...
Hi,
I use a jquery selector :
$('#menus>ul>li>a')
I'd like to to iterate the selector result without the last one:
$('#menus>ul>li>a').removeLast().each(fct());
Ofcourse the function "removeLast()" doesn't exist, is there an equivalent ?
Thanks.
...
Not getting value of radio button which i disable using JQuery before page submit.
...
I want to write a select something like...
#window_4 > content > p:eq(0)
I think I have this correct, but I have a few selectors that are all similar but I can't test them all at once.
Am I right in saying this is selecting an element, who is the fist p tag child of a content tag that is a child of a tag with id 'window_4'
If I have...
I'm working with jquery.ajax() I'm getting a object and I use jTemplate to write the html. My problem is now that I need to place the id of the object in a input hidden. I have no idea how I should do this. I tried to do a <script> in the template.htm with jquery to place the id in hidden but with no luck.
Any suggestions?
this is my ...