I'm nearly complete with this, so I have one final bug I need your help figuring out.
I'll start with the issue first...
Demo: http://jsbin.com/ucalu3/7/
Scenario 3 doesn't work. When you click "expand all" and click a question to collapse the answer, it works just fine. The issue is, now click "collapse all" and it will expand all th...
i have a wordpress site ,in this i want a rating plugin for the posts,such that i should be able to customize where the rating stars should appear on the page
...
Hi All,
I am trying to use the Jquery Validate Plugin and I was able to figure out how to use it on static fields.
My problem is on how to used it on my dynamic forms. I created a fiddle to discuss my problem. Hope you can have patience on reading this. The fiddle link is here
Now, here's what I want to do, validate the Machine ID...
Hello all,
I'm trying to autocomplete some text-fields with
$('#username').replaceWith('<input id=\"username\" type=\"text\" name=\"user_name\">');
$("input#username").autocomplete({
source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
});
I know there's a jQuery autocomplete plugin. How do I include the pl...
After applying the plug-in to my container div as i have done below i am opening the modal win on an event. The window is opening perfectly other browsers then IE7. In IE7 its opening the container of my navigation tab also where i am currently. I have checked the markup its also uniformed in terms of tags placement. Any one can help me ...
Does anyone know of a working jQuery autosave example, one with an actual demo. I've been looking for a few days and have tried a few examples but I have yet to get one to work correctly
http://forum.jquery.com/topic/auto-save-plug-in
http://plugins.jquery.com/project/autosave
http://ideamill.synaptrixgroup.com/?p=3
are a few that i'v...
I've been looking for a jquery plugin for the last couple hours.
What I'm looking for is a panel that stays on screen all the time off to the side of my full story pages.
Similar to the follow me sharing tabs on mashable.com and for a similar purpose. I simply want the tweet digg this and share on facebook buttons on my page to stay on ...
i am using the JQuery asp.net validator callout plugin to resolve the validator callout position issue in safari, it is working fine but the problem is update panel is not at all working.
if i comment the validator callout plugin code, update panel works fine,
can any one help for this issue,
please do neeful
...
Hi
I downloaded the last version of jScrollPanel (2.0 beta 5) but when opened jquery.jscrollpane.css I can't find any rules to apply images for top and down arrow, instead I found only this rule .jspArrow. I try to add an background image and it worked but the image shows on the top and down, how I can specify image for each side and al...
I'm trying to dynamically add elements to an accordion. Each added element contains a form with radio buttons styled with Custom Form Elements. Here is the code I'm using to add the element to the accordion.
$("#addpage").click(function(){
$.get("addpage.php", function(data){
$(data).insertAfter(".accordion div#[id^=element]:last...
Sorry for the lame question.
I am trying to run a simple getting started tablesorter example with no luck.
I know my jquery works because I made a 'hello world' alert test.
I downloaded the .js files and placed them in my working directory/folder.
Firebug "Reponse" window shows me there is actual .js code in the files.
Firebug says...
Hello I am not able to understand how to use jQuery plug-ins in cakePHP. I have one plug-in by the name "countdown". It has 2 js files, one html, one css file and a few images. If I were using regular javascript file, I'd have to give a name to my file and call it in the view or in default.ctp using the "$html->script('path/to/file')" fu...
I have a page with file upload form.
<form enctype="multipart/form-data" method="post" action="uploaded.php">
<input type="file" name="my_file">
<input type="submit">
</form>
I need to post results into a modal window created with colorbox jQuery plugin.
http://colorpowered.com/colorbox/
Does anyone know how do do this?
Thank...
If you search for jquery image galley you will get lot of links where you can download the sample code.
For this gallery I am not getting example. Can anybody provide the link if he/she has used this gallery before?
http://devkick.com/lab/fsgallery/
EDIT
I am looking for exactly similar..
...
I am creating table with Wicket's AjaxFallbackDefaultDataTable and using JQuery tablesorter plugin(http://tablesorter.com) for sorting columns.
Sorting works fine for first time when I load page, but when I click on any pagination link on the table, sorting is not working. Basically wicket is replacing entire table when I do pagination a...
I'm relatively new to Javascript, and I'd like to run the piece of code I spent the weekend playing with through JSLint so that it can point out where I was being a total idiot :)
Unfortunately, I get tons of errors about missing function declarations, which are part of the JQuery javascript library and various plugins for it.
Is there...
I have two tables and I want to have change event on one table.
That is when I click on first table, I want to have some changes to the second table. But somehow below change function is not working. Any suggestions?
$("#history_table table:eq(0)").click(function(){
$("#history_table table:eq(1) thead tr th:nth-child...
I have qTip being called on items within a table..
$('#orders_table a[rel]').each(function (){
$(this).click(function(){
return false;
});
$(this).qtip({
content: {
// Set the text to an image HTML string with the correct src URL to the loading imag...
jQuery apparently will re-size an image if the image is 2 big to fit into the lightbox properly.
( As seen here ).
This does not happen for me though because when I view a LARGE image it takes up the whole page and you have to scroll to see the image.
Is there something I am missing where I can set the MAX width and height of the ima...
I have a functional page posting data to a Page WebMethod
[WebMethod()]
public static string sayHello(string pTest, string pText)
{
return pTest + " - " + pText;
}
which I call using this jQuery
$(document).ready(function () {
$("#sayHelloButton").click(function (event) {
var name = $('#name').val();
var text = $('#text')...