Tagged Questions
0
votes
2answers
30 views
Jquery Dynamic element not being recognized
I seem to be stuck on an issue related to dynamic element creation. Elements added to DOM are not being recognized by jquery ".children" method. I want to hide my data before they are prepended, push ...
0
votes
0answers
11 views
Activate multiple panels of accordion
I have a ASPX repeater creating an accordion. When the user hits the page I check the DB and see what parts apply to the user. I want to pre-select one or more sections of the accordion based on a ...
1
vote
1answer
28 views
Jquery: Wrap dynamically created content sourced from API
I am using the Tumblr API to create a news feed on my site. Currently, for each post the API returns:
<div class="posttitle">TITLE</div>
<div class="postbody">content</div>
...
0
votes
7answers
40 views
jQuery - How to get dynamically created submit input clicks
I have struggled so long with this problem, so that i have to ask your help. In my current project i have to make dynamically new submit buttons, but problem is that i cant get button presses. Here is ...
0
votes
0answers
24 views
Unable to add dynamically an AJAX enabled control
I am developing a website where there is a treeview on the master page. When a user clicks on a node on the tree I want to dynamically load a user control and place it in the content page.
Here is ...
1
vote
0answers
46 views
JQuery Draggable DIV in Draggable LI move to new DIV or create new DIV
I'm new to js and jquery, and it's hard for me to code this task:
I have a big DIV (.pins_dragger) element, it is fixed on layout. DIV.pins_dragger contains some other DIVS (.group) which are ...
0
votes
1answer
20 views
How can I dynamically change the Twitter Profile and Search?
I can display two Twitter boxes next to each other like this, using the Web Helpers package in a Razor 2 asp.net website.
<div id="dynaMashTab-Twitter" >
<span id="spanProfile" ...
0
votes
1answer
59 views
Dynamically created DOM element not increasing div size
I have a selection drop down, which dynamically changes based on the first selection.
I also have the option to add more selections and this creates more drop down select boxes dynamically.
...
0
votes
3answers
52 views
Dynamically add input fields when needed
I'm trying to add extra input fields to my HTML form as they are needed. Here's my code:
My code
JS
$(document).ready(function(e) {
var i = $('.form-inputs input').size() + 1;
...
-1
votes
1answer
48 views
How can I force the contents of a div to refresh?
I am now able to replace html text dynamically (How can I replace html text dynamically?), but I need the tweets to refresh when the inputQuery val replaces the text/caption/heading, too. IOW, I can ...
1
vote
0answers
49 views
How to get a property in a dynamically created Object in a dynamically created Array
Basically, I have this dynamically created object being sent back from a PHP script that I put into an array. I store where it's located in the array in the tools the user uses to select what to view ...
1
vote
6answers
53 views
How can I replace html text dynamically?
I'm adding the text "I Tot I Taw a Puddy Tat!" to the top of a page with jQuery this way in the ready function:
$("#Twitterati").html("<h3>I Tot I Taw a Puddy ...
0
votes
1answer
26 views
checking dynamically named selects using jquery
How can I use jquery to get the value of a dynamically named select?
I have several (no exact number) of selects that populated like this:
<?php
for ($i = 0; $i < count($manifest); $i++)
...
0
votes
4answers
37 views
Trying to select child elements that don't have a dynamically added class
I have a form that's in several sections. As the user fills out the form, I want to mark each section completed as they finish it.
To be completed, all required fields must pass a client-side ...
0
votes
2answers
39 views
How can I dynamically add a browser tab?
Since using iframes to house external pages are, by some accounts "not the preferred method" and even disallowed by some sites (flickr, for one), I now want to dynamically generate browser tabs. e.g., ...
0
votes
3answers
49 views
jQuery max value of fields and min in form
I'm little bit new with jQuery so I have some questions:
I have a form with 2 links where you can add 1 field and remove 1 field.
But the problem is I want to stop at 10 fields, so you max can add ...
1
vote
2answers
87 views
Loading dynamic content into a DIV via Ajax
I have a DIV that is getting its content on success of an ajax data load call:
$.ajax({
type: 'POST',
url: '/load.php',
success: function(msg) {
...
0
votes
2answers
28 views
Prevent iframe from rendering if source server is down
We would like to offer a widget with content from our website to third-party websites in the form of an iframe.
<iframe src="http://oursite.com/iframe"> </iframe>
In the occasion that ...
2
votes
1answer
52 views
dynamic text inputs save to the db via ajax
PHP:
foreach ($_POST['fields'] as $fieldIndex => $fieldValue) {
$stmt = $dbconnect->prepare('INSERT INTO '); <<=== How to insert values
$stmt->execute();
}
JQuery:
...
0
votes
1answer
20 views
JQuery Dynamic Content After Same Domain Redirect
I have a button that gets appended to all visible, specified DIVs.
I want my script to run again (append buttons) when the page is dynamically filled with new DIVs.
The website features a ...
0
votes
3answers
58 views
Make a dynamic site with jQuery & AJAX
I'm trying to make a small site with jQuery and AJAX. What I'm aiming for is a single page in the main public_html folder, called index.php, that is the only page visited by anyone using the site.
I ...
0
votes
1answer
165 views
Using Angular + JQuery for a Dynamic Pinterest-Style Layout
I'm relatively new to Angular and have very little experience with JQuery, so whatever insight/advice you can give me would be greatly appreciated.
My goal is to build a dynamic Pinterest-style ...
0
votes
1answer
37 views
How to bind jquery droppable to a dynamically created element
I'm having a serious trouble with attaching droppable functionality to dynamically created elements.! I cannot bind droppable when the item is created since there is an ajax call going when the a ...
1
vote
0answers
27 views
How to make the margin of an image dynamic
What i have is a long rectangular image like this
http://www.openstudio.fr/jquery-virtual-tour/img/sculpteur.jpg
and 3 buttons that will move the image to left, to right and pause.. just like what ...
0
votes
1answer
31 views
Fixing dynamic responsive navigation when there are more items than the container has width
So I'm currently working with some dynamic navigation. Just the basic HTML markup of a <ul><li> composition. My problem occurs when the user added too many items into this navigation and ...
0
votes
1answer
19 views
Generic Textchange Event
I am creating a android phonegap app, I want to create a generic textbox number validation for entering only numbers (0-9). No decimals(.). I can easily do it by passing different 10 different id to ...
0
votes
0answers
45 views
Appending an autocomplete selected value into a dynamic table
Here is the path of what is supposed to happen:
1) Search Autocomplete box for condition
2) Select a result {shows hidden div1 }
3) Click on Add button from div1 (Shows hidden div2)
4) Hidden div2 ...
1
vote
2answers
27 views
Dynamically Modify $.post url
Can a $.post mirror the action='' of a form?
I don't want to make multiple $.post functions, but the action='' changes as a user selects what he/she wants to submit in the menu system. So, all I ...
0
votes
0answers
38 views
Dynamic Form Serialization Issues
I have a form that contains a menu system. In the menu system you select which type of form you want to dynamically load. [Ex. Upload Video, Embed Video, Upload Photo, Import Image, Upload Audio, ...
-7
votes
0answers
190 views
Creating a dynamic flow chart using Jquery [closed]
How would the best way to go about creating a "dynamic flow chart" like the one described here.
0
votes
3answers
73 views
Dynamic insertion of text file contents within HTML
Basically I am trying to accomplish a personal bit of code for a hobby.
The goal is to be able to read from a file that contains a single line that displays what I am currently listening to as it ...
0
votes
1answer
22 views
update nav without reloading
I'm looking for a simple method to swap the active state (color) of my navigation without a page reload.
this should happen when one nav button is pressed. Esentially it should change it's state to ...
0
votes
1answer
44 views
How can I dynamically add labels and checkboxes from a C# object or method to a fieldset using jQuery?
I need to populate a fieldset on a page with pairs of labels/checkboxes that will differ from user to user. Currently I've got this hardcoded in HTML like so:
Old HTML:
<fieldset ...
0
votes
1answer
49 views
jquery dynamic css selector Case Insensitive
I am looking for a way to dynamicly see if a img has an alt tag containing the string entered by the user everything is working but i would like to make it case insensitive for usability
my php
...
0
votes
1answer
75 views
JQuery when using dynamically created child divs - float: left loses the child divs
Hi I've tried a number of different methods to try and work this problem but I'd like your help please.
I have a a css formatted but empty SECTION that I'm trying to dynamically create a layout ...
0
votes
0answers
66 views
Jplayer dynamic playlist with ajax
Everything works great if you just enter the main page and start adding songs to the main play-list, the problem here is that when I reload the content that provides the selectable ...
1
vote
4answers
45 views
No events for dynamically generated input tags
I have dynamically generated some input tags for a web application.
function FormElement () {
this.formElement = $('<div class="formElement"></div>');
...
0
votes
1answer
41 views
dynamically update UL of MySQL rows
I have this little test site in the works:
http://s199881165.onlinehome.us/transfem/DBO3/
It is trying to be a video playlist player that grabs videos from the VIMEO API using the number at the ...
1
vote
1answer
76 views
Jquery Clone Elements With Dynamic Content
I am so stuck here! I have dynamically created elements inside a div that I need to make a "copy" of, or more like a "second version" of that element. The main function with this is to create a quiz ...
0
votes
1answer
53 views
How can I dynamically add a textbox to the part of text i click edit?
I'm creating a webpage. My Accounts page is more or less like the "Facebook's" account page.
My page's image: http://tinypic.com/r/2e51t2t/5
In this page I want to add a textbox dynamically to the ...
-1
votes
2answers
70 views
javascript passing values dynamically to a method jquery
$(document).bind('pageinit', function () {
var vendor_id = $.urlParam('vendor_id');
$.ajax({
type: "GET",
url: "http://testservice/testmenu",
data: {
...
2
votes
1answer
65 views
Dyanamically change href of javascript youtube player using jquery
<a id="bgndVideo" href="http://www.youtube.com/watch?v=mAf6zKRb1wI"
class="movie {opacity:.8, isBgndMovie:{width:'window',mute:false}, o
ptimizeDisplay:true, showControls:true, ratio:'4/3', ...
0
votes
1answer
45 views
Dynamically create a form
I've got this:
$('input[data-type="UserDetails"]').each(function(index, input){
var name = $(input).attr('name');
var value = $(input).is(":checked");
alert('name: ' + ...
2
votes
2answers
44 views
How to send dynamic key and value both in jQuery Ajax? [duplicate]
I want to send both the key and value to be dynamic(and the key is dynamic like coming from user input). Then how to send the request.
I want something like this:
var requestString;
if(something)
...
0
votes
1answer
53 views
Datepicker for dynamically created controls
I have a page with a number of dynamic controls.
For some of the dynamically created textboxes, I'd like to add calendar control using jQuery (Keith Wood)
Normally, if the textbox controls are not ...
2
votes
1answer
59 views
Appending jQuery UI Spinner Dynamically
I'm having problems with the jQuery UI Spinner widget. It works fine when the input is added in the html; however, when I add the input dynamically it does not work. I created an example of the ...
0
votes
2answers
23 views
jQuery not registering click
The problem I am having is that I can click my element to begin with and everything works accordingly, however after I press the S-key to change my element from a textarea->paragraph, I can no longer ...
1
vote
1answer
80 views
jquery change multiple IDs with regular expression
i need to modify multiple IDs, classes and names of a div, span, select and other elements.
i clone the html from the last row i have in a table, like
var num = $('.clonedLighting').length; // ...
1
vote
3answers
68 views
jquery load() dynamic content not working
i have a website with several tiles that, when clicked, should load a specific piece of content into another div on the site. the content is on a php page referenced by an "id" that i store in each ...
0
votes
0answers
32 views
How to use jquery to fade in different select field attributes based on clicking on link/button above
= simple_form_for @item, :controller => "items", :action => "new", do |f|
= render 'shared/messages', :object => @item
fieldset
legend Create Item
h5 What are you listing?
...





