Tagged Questions
1
vote
1answer
97 views
Modifying JSON Object with jQuery
My API responds my call with the following JSON structure:
[
{
"order": {
"total": "240.0",
"completed_at": 1358432545000
}
},
{
"order": {
...
1
vote
2answers
43 views
How can I change this code to toggle when the screen reaches 500px in width?
<script>
try {
jQuery(function() {
jQuery('#video1').VideoPlayer({
theme: '-vid-skin'
});
$("a.video-link, ...
1
vote
2answers
402 views
Modify jQuery UI slider control
I use the jQuery UI slider control. My slider has a width of 200px. I would like the center of my left handle to be shifted 14px right and the center of my right handle to be offset left by 14px.
My ...
0
votes
2answers
137 views
JQUERY CSS how to modify
Phill Pafford mentioned this code:
resizing a BUTTON through CSS
and this example:
http://jsfiddle.net/3DSGT/
JS:
// For all buttons use something like this
$('.ui-btn').css('width','50%');
// ...
1
vote
1answer
60 views
Ajax - modify data string before get
$.ajax({
type: 'GET',
url: 'report.php',
data: ({url: href})
});
alert(href);
href = https://website.com
how do i remove the https from the url ?
0
votes
2answers
350 views
jQuery, editing inline style tag
I'm having a problem with some css+javascript. You see, I'm trying to make some sort of a wysiwyg webpage style editor in which there is an iframe which load a webpage containing code of something ...
0
votes
4answers
1k views
Changing CSS with jQuery
I am trying to change the CSS styles in the header, but I cannot figure it out. I have scoured the internet for relevant things, & found these to be the closest: .css(), .addClass()
I generated ...
1
vote
2answers
455 views
Updating jQuery Version
Just wondering if there's any tutorials or ways to update jQuery scripts and functions.
I have version 1.4 and version 1.6.2 running, and I want to update both of them to 1.7.1 but I need to modify ...
5
votes
2answers
3k views
Chrome Extension Dev: Modifying the DOM using jQuery
OK. So I've read up on content scripting and the like, including several other SO articles that I'll add below, but this still isn't working!
My _manifest.json_:
{
"name": "name",
...
0
votes
6answers
668 views
modifying select box option text in jQuery
Given the following HTML:
<select id="addSelection">
<option value="Original Value">Original Value</option>
</select>
I would like to change the text value of the option ...
0
votes
0answers
567 views
Jquery Infinite Carousel Caption Modification
Yesterday, I had a client ask me to remove the captions from the image space on an infinite carousel I have implemented here: http://www.nokkam.com/showcase.html and thanks to stack overflow, I was ...
1
vote
1answer
413 views
Infinite Carousel Caption Modification
I have an infinite Carousel function applied to a series of images here: http://nokkam.com/showcase.html
I have had a request to make the captions appear "out of the way of the images"… ugh. Being as ...
0
votes
1answer
752 views
jquery ajax modify data response
$.ajax({
url: 'http://localhost/apsd4/core/main_quota.html',
success: function(data) {
$('#tabs-2').html(r);
$('#tabs-2 #nini').remove();
}
});
i would like to ...
0
votes
2answers
557 views
Remove part of text within P tag after a “ ” separator
My Markup is like this :
<div class="article">
<p class="date">16-05-2011 15:28:24</p>
</div>
This output is generated by a CMS and I searched for everywhere to modify the ...
4
votes
3answers
3k views
How do I add arrows to jQuery UI datepicker
I'm VERY new to using javascript and jQuery. I've built a form and want to use UI Datepicker to help people select a date. Datepicker works just fine, but contains no [visible] clue for how to move ...
0
votes
1answer
225 views
jquery URL modification
How do I replace subcomponents of a URL using jquery.urldecoder ?
I can extract eg. the anchor using:
var res = $.url.parse(myurl);
alert(res.anchor);
I would expect to be able to replace ...
0
votes
1answer
599 views
Use jquery to modfiy .css height or width based on which is greater
I'm new to jquery and html in general, and am working on building a gallery webpage. This webpage works by setting the selected image as page background and then scrolling along the image vertically ...
3
votes
1answer
96 views
Modify animate function with JQuery
I have the below function that works a treat, but instead of clicking the #featured li.block div to make the div spin; how would one make a link with a class button a.button? clickable to make the ...
0
votes
7answers
312 views
I want to loop through an array and modify attributes
Here is my code
var input_buttons = ["#one","#two","#three"];
var substr = input_buttons.split(',');
for(var i=0; i< substr.length; i++)
{
substr.attr('value', '');
}
Why doesn't this work?
...
0
votes
1answer
57 views
Modify Existing Questions answer
Just a quick questions. Im new to this site but this link Show/Hide multiple DIVs with Select using jQuery
I just wanted to know how to change the code so its not in a drop down select but an actual ...
1
vote
1answer
99 views
jQuery: Modify the structure of an input
i have wrote today because i need some help with a simple function in jquery for modify the structure of an input [reCaptcha] and hide the image showed.
The code of the page(s) that contains the ...
0
votes
1answer
128 views
jQuery slideshow: how do I modify this code to show a custom pager per slide?
Right now the code is spitting out 1 pager item per slide existing. I'm trying to get it to show a custom pager graphic per slide. IE: slide 1 shows pager1.gif, slide 2 shows pager2.gif, etc. Thanks!
...
2
votes
3answers
89 views
jQuery visible targeting issue
I've made this script that lets you navigate through multiple divs with jQuery, but I want to make a css change to the parent if the 6th div is shown and using .is(":visible") hasn't given me any ...
1
vote
2answers
544 views
using jQuery to modify DOM element after page content has fully loaded
I apologise in advance if my question seems a bit misleading, but I'm trying to wrap my head around this one.
I have a flash-based MP3 player (http://blog.lacymorrow.com/projects/xspf-jukebox) that ...
0
votes
3answers
59 views
How do I create series of div and make them accessible for jquery to modify them after a while?
I want to create some DIV from javascript. I don't know how many I will need to create, but I will need to change the back-color of it after a while.
I'm using jQuery in my project. So if it's easier ...
3
votes
1answer
2k views
jQuery - modify the prompt/alert functions
I need an advice, if it's worth it to downlaod a jQuery plugin (such as Impromptu), or if it's easier to make my own code just to modify the "prompt" efect. All I need is something like the first ...
0
votes
2answers
577 views
jQuery “modify” event
So I recently took a closer look at JavaScript and jQuery and after that stumbled over the Firefox extension called Greasemonkey.
Well, let me explain what I mean with the "modifiy"-event: I've got ...