0
votes
1answer
27 views

making a jquery expandable collapsable box with state indication?

I have tried for some time to create a collapsable / expandable div with jquery to build a "basic" and "Advanched" search box to no avail. Expand or Collapsa a div Change the text on the div ...
-1
votes
0answers
31 views

jquery mobile removing green text color on active button [closed]

does anyone know how to remove this ugly green color which stays when a button is pressed and even the active class isn't showing. This color isn't defined in any stylesheet or structure file so i'm ...
2
votes
2answers
34 views

Maintaining state of an iFrame page in various browser windows/tabs through Javascript

I have a page (say 'basepage') in which there is one iFrame. In this iFrame, there are various divs which are displayed and are made hidden based on some criterion at run-time. This criterion is ...
1
vote
2answers
163 views

stop jquery ui window from closing after postback

I have a jquery UI window that has a set of text boxes and an image uploader. ive got it up and running great, but am having an issue with the image uploader. When the user clicks to upload their ...
0
votes
1answer
85 views

Detect disabled attribute changed with jQuery [duplicate]

I have a html control, and need to detect when it's disabled state changes. I tried: cb.on("change", function() { if(cb.is(":disabled")) { // the control is disabled } else { ...
2
votes
1answer
136 views

Disable hover state of a html tag

I want to disable hover state of my html element but not using another css to override css of hover. Here is my code lines: <div id="test"> Hello world </div> <style> ...
0
votes
1answer
636 views

Enable/disable inputs based on dropdown selection (jQuery)

I got two inputs and one dropdown per row in my website. To explain it properly. I got the input: "Start" and "End" to set opening times for my store and a dropdown to choose if the day is ...
0
votes
2answers
182 views

jQuery - Remember if a timed popup has been activated after page refresh

I have a page with a popup overlay containing a form, that appears automatically after 20 seconds or is shown via the click action on a div. I need it to work so that when the page is refreshed after ...
1
vote
1answer
158 views

Change jQuery's animation duration during animating

Is it possible to change the duration of a currently running jQuery animation between two different values? I've tried to change the duration via variable assignment, no success: var duration = ...
1
vote
1answer
397 views

Saving a state with jquery accordion style menu (Maccordion)

These questions are probably going to seem pretty low end to the experienced, but I'm inexperienced in this area. However, I learn quick and there are some basic things I'm having confusion over. My ...
1
vote
2answers
161 views

Jquery cookie, working for background color but not logo image

I am using JQuery cookie to change the color of a background. I also change logo images at the same time but on page reload, I am still trying to figure out how to get the cookie to retain the logo ...
0
votes
2answers
106 views

Maintain div state of toggle event

In addition to previous question about a click event on multiple div tags with same class, is there a way to maintain div's state after page refresh, using jquery? I've done this in the past but for ...
0
votes
4answers
488 views

Onclick, change hover image JQUERY

I have a standard list where the user clicks the headings and scrolls down items in currently hidden DIVs using jQuery's slideToggle(). In the tag my CSS file declares that: a.showBlind:hover ...
1
vote
5answers
79 views

Hover state when entering site

I'm having a problem with hover on images. When entering the site the hover-state is active, but it shouldn't be until a mouseover-event. When moving the mouse over the images the hover effect ...
0
votes
1answer
322 views

jQuery BBQ split URL state into useable chunks

Trying really hard to understand jQuery BBQ and not doing so well. There are a few things I need to figure out, but I'll try to focus this on what I believe is the most important in hopes that ...
1
vote
2answers
1k views

Remember Toggle state with JQuery after refresh?

I got a small script wich toggles my nav. But im using the nav in more pages. I want jquery to remember the toggle(show/hide) state so i can use it when navigating. $(document).ready(function(){ ...
2
votes
1answer
739 views

Multiple JQuery Accordian Menus - Remember unique states with cookies (persist state)

I am new to jquery and need some help here. I am using an accordion menu based on CSS, JavaScript, and jQuery see original version... I have a question that I hope some guru here can answer... My ...
0
votes
4answers
222 views

How to save a form state from a jquery that disables my submit button when timer ends?

I have a javascript running in my site that runs down a timer to zero and then displays a message and disables my submit button to prevent more data being inputted into my database. I have got it to ...
1
vote
1answer
166 views

How to record current css environment?

I'm working on a web project where I'm using jQuery drag and drop functionality, along with resizing elements, etc, and every time I close my browser or hit reload, everything goes back to scratch. ...
0
votes
1answer
229 views

Adding a current/active state to a jQuery scroller/Side Menu

We have a side menu in place that is based off the code found here on google docs. http://code.google.com/mobile/articles/webapp_fixed_ui.html We have it in place and its working nicely, what I'm ...
0
votes
2answers
2k views

keep checkboxes checked after page refresh

I have a couple of checkboxes. when any of them are clickd/checked and the search button is clicked, will grab their values and pass to the url as querystring and refresh the page returning results ...
1
vote
3answers
964 views

remember the state of .attr after page reload

There are some checkboxes in my form: by checking one, you disable another. The below code works very well. The problem is that when the user gets an error after submitting (when the page reloads) the ...
1
vote
2answers
864 views

Jquery sort table column by checkbox state

I have a datatable that has a column called Waive Fee with checkboxes. The column needs to be sortable, i.e. when the column header is clicked, all the checkboxes that are checked needs to bubble up ...
1
vote
2answers
300 views

How can I add an active state to this jQuery code

Any opinion, how to add an active state (which remains highlighted after selected) to this code? jQuery: $(function() { $("ul#navigation span").css("opacity","0"); $("ul#navigation ...
0
votes
1answer
422 views

jQuery cache refreshing checkbox radio button state

I've just found out that my checkbox/radio buttons keep their previous state in ie/ff when doing a normal refresh, F5. Is there something i can put in the javascript/jQuery to make their state reset? ...
-1
votes
1answer
170 views

preserving the state using javascript and jquery

I having problem figuring howto preserve the present state ...Let say I have selected radio button and checkbox in present form and navigate way to a different page but if I want to go back to old ...
0
votes
3answers
2k views

How can my forms checkboxes keep their state after a submit and page reload?

I have a form consisting of checkboxes which is filtering records on an index page, how can I make the checkboxes in the form keep their checked state once the form is submitted and the page is ...
0
votes
1answer
137 views

Does IE8 recognize state attribute changes via jQuery?

I am using jQuery to change a state attribute from 0 to 1. It seems to be working fine in all modern browsers, but is not working in IE8. I have been unable to determine if I am merely doing something ...
0
votes
2answers
853 views

(JQuery) Saving page state throughout history

I have a page with a movie list, which extends as soon as you scroll down. When I click one of these movies to see the details, and after that hit the back button in my browser, it forgot the state it ...
6
votes
4answers
2k views

Alternatives to HTTP Session state in plain-vanilla .NET web services app

After a long struggle with the Page Lifecycle in ASP.NET and its performance, we've begun refactoring our web app to implement web services (plain-vanilla .asmx .NET web-services) and jQuery on the ...
3
votes
1answer
1k views

HTML history state issues on OS X Chrome 10.0.648.151

I'm trying to figure out how to use HTML5's history functions. Here's my basic code: $(document).ready(function () { var stateObj = { foo: "bar" }; history.pushState(stateObj, "page 2", ...
0
votes
1answer
384 views

Rails + jQuery Sticky Button

I'm looking for suggestions for how to create a menu button that can be "sticky", ie: if the user presses it once it stays pressed for the entire visit to the site, even if they browse through several ...
0
votes
2answers
580 views

Jquery save toggle state on live click and window setTimeout

I was wondering. How to save an event state ( toggle() ) while I am getting data with ajax and using window setTimeout to keep the data fresh. I have this code to refresh window every 10 seconds ...
1
vote
4answers
1k views

jQuery: overriding and restoring attribute values

I am trying to have expandable rows in a data table. Each time I have a "master row", followed by 1 or more "child rows" that are toggled by clicking on the first cell of the master row. This is my ...
0
votes
0answers
463 views

jQuery Address with inbox

Myself and my team are currently developing a user inbox within a dynamic website. The inbox navigates between messages and mailboxes using ajax in order to create a more responsive atmosphere. The ...
2
votes
1answer
1k views

jcarousel - how can i make an image link in the carousel stay active

Have been succesful in adding a jcarousel to navigate around my html site which is built with dynamic template. However, i need an image link to appear active when i am on the page it is linked to so ...
2
votes
4answers
8k views

jQuery Ajax checkbox state

I have checkboxes on my page for which I would like to send their state back to the database via ajax. I know how to use jquery with ajax, but I don't know how to get the checked state, both checked ...
0
votes
2answers
364 views

Using jquery to change checkbox status

I have a list of items that have checkboxes associated with them, and the items are beneath a list header, which also has a checkbox(for db purposes only) which is actually hidden from view. I need to ...
5
votes
3answers
6k views

Managing active state

<ul> <li><a href="#">item 1</a></li> <li><a href="#">item 2</a></li> <li><a href="#">item 3</a></li> ...
2
votes
3answers
4k views

Remembering a jQuery draggable tool palette position between page refreshes

I have a tool palette which shows up when an admin user is logged in to a site. The palette is draggable (via jQueryUI.draggable) and I would like it to remember the position between ...
4
votes
3answers
20k views

jQuery “active” class assignment

All I am trying to accomplish is to be able to have an unordered list of links in which one is clicked, the parent list item is assigned the class "active." Once another link is clicked within that ...