15,127 Topics

Member Avatar for
Member Avatar for Szabi Zsoldos

Hi guys, I don't even know where to start, the ideea is that I want to develope an API that responds with certain data, but I don't have a clue for what to look. The ideea is that there is a panel like google analytics but with no stats, but …

Member Avatar for diafol
0
290
Member Avatar for yankeefan24

I need to calculate the number on selections. Im using the value as reference I dont need my function to add the values I need to add the number of fully successful, exceptional, or need imporvements. Here is a code I have but it calculating the total based on the …

Member Avatar for theHop
0
227
Member Avatar for capmarketing

This may be the ugliest bit of javascript you've ever seen... but can someone tell me why the elements come through un-styled even though I am clearly writing to divs that are classed and the stylesheet is pulled in? Definitely falling victim to some noob error here, but which one? …

Member Avatar for theHop
0
165
Member Avatar for Dragan_1

I have problem with markers, actually with clicking on it. I want to achive that, when i click on a marker, on a left side in a div show name of that marker. Problem is that I always get name from last marker. I guess, that is a problem in …

Member Avatar for LastMitch
0
200
Member Avatar for mmcdonald

Hi all! I'm trying to validate this form: <form action="<?php $_SERVER['PHP_SELF'] ?>" class="horizontal-form" name="settings" id="settings" method="post"> <div class="row-fluid"> <div class="span4 "> <div class="control-group"> <label class="control-label" for="firstName">First Name</label> <div class="controls"> <input type="text" id="fn" class="m-wrap span12" value="<?php echo $userInfo['fn']; ?>"> </div> </div> </div> </div> </form> I've added my validation js files.. These …

Member Avatar for LastMitch
0
161
Member Avatar for jared_1

Ok seriously this is driving me insane. I am using firefox and i cannot get this image to stay on screen. Im trying to make the image move when i press keys but any keybinding makes my image vanish. I guess i just suck idk. <html> <canvas height="480" id="gamescreen" width="640"> …

Member Avatar for LastMitch
0
132
Member Avatar for JackticalNuke

I'm building a Phonegap app, and am using the Facebook Javascript API to log users in. My code is as follows: FB.login(function(response) { if (response.authResponse) { console.log('Welcome! Fetching your information.... '); FB.api('/me', function(response) { console.log('Good to see you, ' + response.name + '.'); }); } else { console.log('User cancelled login …

Member Avatar for LastMitch
0
98
Member Avatar for Carpetfizz

I'm trying to get [grunt-jsdoc-plugin](https://npmjs.org/package/grunt-jsdoc) to work, and I'm having a small problem. In my console, I keep getting: Running "jsdoc:dist" (jsdoc) task Warning: Cannot read property 'src' of undefined Use --force to continue. Aborted due to warnings. In the grunt-jsdoc-plugin documentation, it says: src : an array of pattern …

Member Avatar for LastMitch
0
171
Member Avatar for persianprez

I made the following code to replace form fields in a page that I can't edit but only manipulate. However, the code does nothing. In chrome console when I print a variable it works fine. The code is below: //GET val from drop DROP DOWN var office_id = FieldIDs["OfficeName"];//Gets the …

Member Avatar for LastMitch
0
191
Member Avatar for Tutor_1

On selection from drop down in few cases the label above the drop down (label being attached dynamically) disappears here is the code $.ajax({ dataType: "html", url: app.util.appendParamToURL(options.url, "format", "ajax"), data: options.data, type: options.type }) .done(function(response) { // success if (options.target) { $(options.target).empty().html(response); } if (options.callback) { options.callback(response); } }) …

Member Avatar for LastMitch
0
823
Member Avatar for Zababa

Hello there guys! :) It's been quite a while since the last time I've been here. I am currently working on topics different from my usual, and I have found myself baffled by a problem. So, here goes: I am working on a web application which collects user fiscal data. …

Member Avatar for chrishea
0
208
Member Avatar for yankeefan24

I have this form where I pass select values to an input field. Is it possible to pass this results in to a td instead of an input field? here is the code http://jsfiddle.net/jencinas69/ytXnC/

Member Avatar for diafol
0
174
Member Avatar for tom_benton

My intention is to build a conference booth map. Let's say I have drawn a square on an image file with a fill color of white. I need to have the ability to change the fill color. How can I programatically do that via javascript? Or is there any software …

Member Avatar for tdjprj
0
61
Member Avatar for mhd_arif123

Hi there ! The code(in model) given below generates the list structure: function getNavigation($parent_id = 0, $show_product = 0, $flg = 0 ){ $query = $this->db->get_where('categories', array('parent_id' => $parent_id)); //var_dump($query->result()); //exit; if($query->num_rows() ){ $this->navigation .= '<ul id="browser" class="filetree">'; foreach($query->result() as $v){ $this->navigation .= '<li> <span class="folder">'; if($flg) { if($v->categories_id == …

Member Avatar for diafol
0
1K
Member Avatar for prem2

Hi guys, I am struggling with regular expression.Can you please suggest the regular expression for the below patterns. I have tried many times with several patterns but still i could not resolve the below patterns. 1. Must contain at least one alpha character (i.e. a, b, c etc,) 2. Only …

Member Avatar for pritaeas
0
253
Member Avatar for designershiv

Hi, Can anyone tell me how to get instagram api for displaying images in website. Ex: instagram.com/miniusa //getting images of miniusa Thanks in advance

Member Avatar for designershiv
0
147
Member Avatar for dennishall

Hi All: I have a challenging jQuery XML task I'm trying to accomplish as follows: I have an XML structure as follows: <nav_data> <outline> <links> <slidelink slideid="_player.6LjVRsWzPla" displaytext="Scene 1" expand="true"> <links> <slidelink slideid="_player.6LjVRsWzPla.6GWiXuWmXyn" displaytext="Fundamentals" expand="true" /> <slidelink slideid="_player.6LjVRsWzPla.6gxk7XqbaT8" displaytext="Closed Captioning Example" expand="true" /> <slidelink slideid="_player.6LjVRsWzPla.5rPNkwvz8u2" displaytext="Another Cationing Example" expand="true" /> …

Member Avatar for iamthwee
0
264
Member Avatar for LegateLucius

i want to do something like this how do you do it? <?php $meat="cow"; <script type="text/javascript"> document.write($meat); </script> ?>

Member Avatar for mmcdonald
0
234
Member Avatar for cgull

Hello, I am developing a site with CI 2.1.3 I have a blog module, in this blog I have a form to post a comment. I am calling this form inside a view with: `echo Modules:: run('blog/comment');` When I submit this form with ajaxForm, or refresh the page, the values …

Member Avatar for cgull
0
3K
Member Avatar for mmcdonald

Hi all, I'm currently looking at this [JSFIDDLE](http://jsfiddle.net/MH8e4/6/) and it's 50% of what I need. I have a series of Accordions on my page (a list of courses). What I would like to do is assign these accordians to categories so that when a checkbox is pressed with the id …

Member Avatar for mmcdonald
0
375
Member Avatar for veledrom

Hi, I try to do the examples in these pages but none works. When i run, it shows "Error" word on the status bar of my browser. What do you think it doesn't run? Thanks [url]http://www.w3schools.com/PHP/php_ajax_xml.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_database.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_responsexml.asp[/url] [url]http://www.w3schools.com/PHP/php_ajax_livesearch.asp[/url]

Member Avatar for kanoy83
0
455
Member Avatar for harderm

I want to have a bullet precede any text typed. When an [Enter] key is pressed, a new line starts with a bullet preceding whatever new text is typed. I've seen this done at fargo.io and workflowy.com and need to know how they do it!

Member Avatar for iamthwee
0
180
Member Avatar for mmcdonald

Hi all, My local development project has been working perfectly for...6 days now? I haven't even touched the login/register page for 2 days+ yet all of a sudden all JavaScript has seized up! I've been using the page to login all day and only now has it stopped working. I'm …

Member Avatar for mmcdonald
0
180
Member Avatar for slakkaraju

Hello, I am new to Javascript and HTML. Trying to learn through web. I want to make an image map. Example: Like our desktop start button I have a hotspot.m When we click on that , the second image should display on top of existing image at a fixed position. …

Member Avatar for iamthwee
0
64
Member Avatar for Diogo Martinho

I'm currently having an issue while trying to pass Data to my controller in my MVC application. Here is my code $('#idNumber') .autocomplete( { source: "/@Resources.Global.Lang/Client/AutoComplete?ID=" + $("#idNumber").val() + "&country=" + $("#country").val(), select: function (e, ui) { var temp = $("#idNumber").val(); var temp2 = $("#country").val(); $.ajax({ type: 'POST', url: "/@Resources.Global.Lang/Client/searchClientByID?ID=" …

Member Avatar for iamthwee
0
118
Member Avatar for mmcdonald

Hey all, I'm trying to make a link outside of the nav-tabs class, specifically in a paragraph, that changes to another tab on the same page. Granted that I know this requires JS and that I know nothing of JS (Another book i ordered this morning :) ) here is …

Member Avatar for mmcdonald
0
229
Member Avatar for cguan_77

hi guys, is there a way to create in Javascript or Jquery to have a search box and search for the data within the HTML page. In the HTML page, there's a lot of links. Basically the HTML page looks like this: File No 1 - Link to File No. …

Member Avatar for crescendo
0
188
Member Avatar for wallflips

Hello dear DaniWeb users and thanks for reading this thread. Eight months ago I started a forum CMS project, but alone it's very hard to develop fast and quality. My intentions of writing this thread are to make some interest over the developers of this massively huge website and to …

Member Avatar for vanessa001
0
664
Member Avatar for cgull

Hello, I am developing a web site with codeigniter 2.1.3 I am using an ajax call to post data to my controller, but for some reason the data is not being sent. I am using ajax calls all over the application and they all work well just not this one. …

Member Avatar for cgull
0
3K
Member Avatar for MWEB

Hello ! This code below should display me all the alert boxes but , unfortunetly it display only 3 ( without the alert inside the $.post function ) and i really don't see a problem in my code .. What is wrong? JS var uname = name.val(); alert( uname ); …

Member Avatar for MWEB
0
203

The End.