-11
votes
0answers
25 views

I want to remove purchase reminder code from menucool thumbnail slider jquery

I downloaded a thumbnail slider jQuery from menucool.com but now it sometimes shows the purchase reminder pop up. Please help me.
0
votes
1answer
38 views

Translate bar scroll fix

I have a website, and I get a fair amount of traffic from portugal and many other places that speak languages other than English, so I wanted to put a translate option, which I have now done. My ...
0
votes
3answers
37 views

Couldn't append variable with single quote to anchor tag's title

I am getting data from database that has single quotes in it. There are no problems in getting that, I get variable with single quotes in it ex: var title="vicky's blog"; Now the problem is I am ...
0
votes
4answers
54 views

Getting dynamically created element by ID (Jquery)

I am using JQuery, and I am creating elements dynamically via before() but I am unable to access those elements via ID. It's a bunch of code and I'd rather not post it if possible, but I am checking ...
0
votes
5answers
32 views

Make word in into a link jQuery

I'm trying to make this: <td class="Monthly Status-cell">/fileid=XXXX</td> Display as http://www.domain.com/fileid=XXXX Can you tell me what is wrong with my code? ...
0
votes
0answers
29 views

JAVASCRIPT steps to setting up utterscroll?

i have been trying to set up utterscroll and i cant seem to be able to there is no clear instruction, i put both files provide in order and i call the event but nothing ...
0
votes
0answers
21 views

php/mysql/jquery - beginnings of an SPA login system

I am trying to implement a simple login system with php/mysql/jquery. I want it to be a single page app, so I have this for my "index.php": <!DOCTYPE html> <html> <head> ...
0
votes
1answer
28 views

On jQuery .change find which instance of .class

I'm running a function when an input with a given class is changed. I want to be able to find which instance of that class was changed(0,1, or 2). How can this be done? <input class="class"/> ...
0
votes
1answer
48 views

Dynamic content using jquery

I came across the example below to dynamically change the shape and size of an object. It's not a real live example but once I get it right, I'll apply it <!DOCTYPE html> <html> ...
0
votes
1answer
26 views

JSON encoded value not returned properly

I'm trying to call a file from my server and return an HTML form. I asked a question here to get started but now I have another problem. The textbox and submit button display, but since the data is ...
0
votes
1answer
29 views

Making header act like google chrome mobile app address bar

I have a header that I have fixed to the top of the window. I have it appear when the user scrolls up and disappear when the user scrolls down. Right now it just uses .show() and .hide(). I am trying ...
0
votes
3answers
32 views

Jquery replace html with another html

I have this html on my document <iframe width="100%" height="166" scrolling="no" frameborder="no" src=""> <html><head></head><body></body></html> ...
-3
votes
1answer
39 views

How do you change the text of a textarea using jquery 1.8? [closed]

I have some html code: <textarea id="termsAndConditionsTextArea" class="fullWidthTextArea" readonly> Please select a tab above to read the relevant terms and conditions </textarea> ...
0
votes
1answer
22 views

Javacript :: Background downloading with delayed saving to local drive

Using JavaScript I need to download a binary file in the background, then modify such binary data (some internal processing) and at the end to offer a client to save such file to a local drive. ...
0
votes
3answers
40 views

calling jQuery method from HTML file not working [closed]

I need to call a method in jQuery when a button is clicked in the HTML file. But I am unable to call the method. Please help me regarding this. Please let me know what wrong in my code. my html file ...
1
vote
2answers
35 views

jquery change content in php template from file with “pages” in

right i hope people dont say im repeating what has already been said before but here goes now im new with php and jquery so please bare with me ive created a php template ith variables library and ...
0
votes
2answers
43 views

Return HTML from jQuery GET request

I'm attempting to return an HTML form from a GET request triggered by jQuery but I'm not sure how to go about doing this. A customer's server will call to mine which will then return a form. I ...
2
votes
4answers
33 views

Toggle functionality Issue

I have DIV Content and HIDE/SHOW hyper link. The functionality is not happening as expected. Initially the div content is visible with hide link, once user click HIDE link the DIV content get close ...
-1
votes
2answers
45 views

Make a fixed nav bar disappear when the user scrolls down and reappear upon scrolling up [closed]

I want to create a navigation bar that disappears when the user scrolls down the page but reappears when the user scrolls back up. Kind of like the search bar that is in the mobile chrome app. Does ...
-4
votes
0answers
47 views

Hi. I am trying tom understand how to move a div or image using arrow keys [closed]

Can anyone put me in the right direction of how to move a div using arrow keys. I have tried quiet a few of the examples on here which work with a jfiddle example but nothing happens when I try the ...
1
vote
2answers
19 views

Highligh Cell Border according to selection (Active cell)

I just have a simple HTML table and I need to highlight the selected cell. <table with='100%'> <tr> <td> <input type="radio" name="x" value="1" id="x1"> ...
-2
votes
0answers
18 views

MLM tree structure [closed]

Am trying to code a structure like the below link image http://i.stack.imgur.com/XZCGP.gif using jquery and with datasets(json): [{name:'xxx',id: 1,position: left,parent: 0}, {name:'xxx',id: ...
1
vote
1answer
21 views

Correct usage of jQuery to select each closest section, and a bit about semantic

I currently work on an portfolio-overview, the client wants a slideable (toggle-stated) section below each row. The section will be filled later with some ajaxed stuff, depending on which link was ...
0
votes
1answer
18 views

Control the way elements load according to device (mobile/tablet,etc)

I need to use Javascript/jQuery to control the way my elements load, meaning if I am on iPhone or Android mobile and for iPad and tablets. I dun wanna use CSS media queries, I need it in Javascript or ...
0
votes
2answers
40 views

Reversal of the value of variable upon callback

How can I achieve this? Firstly the code... function flutter() { var random = Math.floor(Math.random()*5); var $obj = $('.bird'); $obj.animate({ top :'-=' + random + 'px' }, 20, ...
0
votes
2answers
38 views

Write LI with jQuery

I am customizing an existing jQuery slideshow and wondered if anyone can help with changing the basic system which writes a Flickr source image into a background image CSS class of an LI to instead ...
2
votes
5answers
61 views

Having problems with jQuery removeClass

Im having problems with jQuery .removeClass I don't think i need to explain alot since the jsFiddle will do. But why isn't left working propertly? Right is working fine as you see the red passes on ...
0
votes
1answer
38 views

jQuery - List item change div class on click

Something is wrong with my code, as it is not currently working! The problems are is that it doesn't do what I want it to. That is change the image when the link in the <li> list is clicked. The ...
0
votes
3answers
36 views

jQuery - Replace div class when click a list

Can someone help me write a jQuery script to replace a div class to another class when a link is clicked. I have a list of addresses, and I want a map image to change when an address is clicked. Due ...
0
votes
1answer
23 views

Backstretch and background-size: cover

I'm currently using CSS for full screen background one my single page website (composed of several DIVs of 1300px height under each other). It works well, the background image is full screen on the ...

1 2 3 4 5 1259
15 30 50 per page