15,698 Topics

Member Avatar for
Member Avatar for RonKevinT.Manuela

Okay so Im gettin an error of Fatal error: Call to a member function fetch_array() on a non-object in C:\wamp\www\Usersearch\search.php on line 54...Im trying a tutorial on AJAX live search...http://ninetofive.me/blog/build-a-live-search-with-ajax-php-and-mysql...I only replaced the database connection to my own database... here's the Usersearch.php <?php /************************************************ The Search PHP File ************************************************/ /************************************************ …

Member Avatar for RonKevinT.Manuela
0
3K
Member Avatar for nadiam

hello. I have a page with two tables, .contact-names and .guest-list, and a drop down list. by default the tables are empty but shows message "please select an event" from the drop down list. when an event is selected .contact-names is loaded with names from database and .guest-list remains empty. …

Member Avatar for mattster
0
242
Member Avatar for younes.keraressi

hi, i create a web lan application, here my code: function Init_Form7() { $("#i_b_name").val(''); $("#i_b_last").val(''); $("#i_b_prob option:first-child").attr("selected", "selected"); $('#i_b_to option:first-child').attr("selected", "selected"); $("#i_b_acti").val(''); $("#i_b_date" ).val(''); $("#i_b_le_date").val(''); $('#i_b_wil option:first-child').attr("selected", "selected"); } on the "reset button" i call this function onclick="Init_From7();" the problem is , when i click on server machine the "reset …

Member Avatar for AleMonteiro
0
107
Member Avatar for nadiam

hi guys. is there a plugin or jquery ui that i missed that would allow a user to resize width or height of image/element and rotate image/element? resize something other than .resizable() . i found [this](http://www.ajaxblender.com/howto-rotate-image-using-javascript-canvas.html) for rotation it uses canvad tag and DXImageTransform.Microsoft.BasicImage. is there any other? TIA!

Member Avatar for AleMonteiro
0
706
Member Avatar for nadiam

hi guys. i have this one page that is for graphical seating arrangement. u know like for say a wedding u assign who is seating where, what table is used, where is the table placed and stuff like that. right now i just have drop down list of the number …

Member Avatar for mc3330418
0
901
Member Avatar for suavedesign

Using jquey, I am making some elements on my site fade in and out. http://www.boneiolam.org/ns/ - The part I am referring to is on the grey background, under "services". How do I make the effect occur on only one instance of the element at a time? For example, when you …

Member Avatar for suavedesign
0
214
Member Avatar for shashikumar s g

hi all , Let us discuss which are the new technology are using in the web development what the feature of this technology and this technology has the feature or not what its advantage using this from the late technology so more basic technology i know is html html5 css …

Member Avatar for shashikumar s g
-3
273
Member Avatar for SimonIoa

I have developed a script so that users can upload audio files (mp3). The problem is that you can't tell when the uploading has finished and so the user may submit the form. The load status that i have developed keeps showing the loader image without stopping. I want help …

Member Avatar for SimonIoa
0
158
Member Avatar for SimonIoa

I am getting this on my error log Cannot serve directory /home/ro265852/public_html/uploads/photos/: No matching DirectoryIndex (index.html.var,index.htm,index.html,index.shtml,index.xhtml,index.wml,index.perl,index.pl,index.plx,index.ppl,index.cgi,index.jsp,index.js,index.jp,index.php4,index.php3,index.php,index.phtml,default.htm,default.html,home.htm,index.php5,Default.html,Default.htm,home.html) found, and server-generated directory index forbidden by Options directive does anyone tell me what it means?

Member Avatar for SimonIoa
0
456
Member Avatar for ajharul

Hi all! This is my frist discussion. I'm shearing you a very helpfull website that helping me to learn HTML,CSS,Javascrift online. It's w3schools Wish it will help you.

Member Avatar for shashikumar s g
0
221
Member Avatar for Shibbir Khan
Member Avatar for prax1790

As the Apache Struts has lowered the Dojo plugin from Struts 2.1 many of the developers have made their mind for shifting everything to jQuery. While doing so, they specially notices the variation in sizes (170kb vs 19kb above). One may experience little troubles with the IE browser with handling …

0
70
Member Avatar for HuePig

Hi, say I have `<input type="checkbox" id="box1" />` and `<div id="createhere"></div>` and in a javascript file I have: function(){ var box=document.getElementById("box").checked; var s = ""; if(box){ s = "<input type="text" name="text" id="text" />" document.getElementById("createhere").innerHTML = s; }else{ s = ""; document.getElementById("createhere").innerHTML = s; } } Now this works BUT it …

Member Avatar for HuePig
0
149
Member Avatar for Siberian

When clicking on any of the menu items on my page, for example; clicking on the word *blog*, calls up the "tutorials" div, when only clicking the word "tutorials" should call up the "tutorials" div. Second issue is the #reachme div should be completely hidden behind the footer and only …

Member Avatar for Siberian
-1
171
Member Avatar for koneill

I have some code that allows one to move an image by clicking links (move left, move right etc) - the code works in IE but not in Google Chrome - therefore I have added to the JavaScript a check for this via g = (document.getElementById) ? 1 : 0; …

Member Avatar for koneill
0
374
Member Avatar for nadiam

Hi, so i found this topic on forum.jquery [Click Here](https://forum.jquery.com/topic/is-it-possible-to-set-id-to-dynamically-created-div) and there is a way to set and ID for a dynamically created div (copy paste from the forum): var x=3,y=3 for (var i=0; i<x; i++){ var line=$('<div>', {id:"X"+i } ).css({clear:'both',width:'100%'}).appendTo('body'); for(var j=0;j<y;j++){ $('<div>',{id:"X"+i+"_"+j}).css({float:'left',width:10,height:10,border:'2px solid red'}).appendTo(line) } } the question …

Member Avatar for AleMonteiro
0
3K
Member Avatar for poloblue

Good Evening, Can anyone help me with the mathematical formula for investment. This the problem that I have to workout Write a program to find future value of monthly investments. Start with an initial investment, make a deposit every 30days, calculate interest on principle compounded daily, display a table showing …

Member Avatar for poloblue
0
2K
Member Avatar for arifsaroha

Hello Everyone, Actually I have a good command on html, css, css3... Now I'm turning towards jquery and watching video tutorials. So, I want to get assignment on daily basis of Jquery. Is there any person who can give me the assignment, so that I can improve my jquery....

Member Avatar for arifsaroha
0
198
Member Avatar for Shibbir Khan

$.ajax({ url: "/Configuration/AddServersAdvancedSelect", type: "POST", data: { selectedOUs: that.getByDataSelected() }, async: false, dataType: "html", success: result => { cont.setTabContentFromHtmlString(result, 1); cont.tabClicked($("td[data-value='1']").get(0)); }, error: (xhr, ajaxOptions, thrownError) => { // } }); This is my ajax request towards the server. For some reason the data doesn't get selected. The getByDataSelected function …

Member Avatar for shammi.khan.73
0
422
Member Avatar for f_atencia

Hi all. Suppose I have the following JSON Object: "WorkPhone": { "Phone": { "FixedPhone": "98221234", "Fax": { "CountryCode": "61", "AreaCode": "", "text": "" }, "Mobile": "" } } How can I manipulate the 'FixedPhone' object to look more like the 'Fax' object in Javascript / JQuery? That is: - Remove …

Member Avatar for piers
0
123
Member Avatar for Nabeel_2

$(".qty").change(function(){ $.each($('.qty'), function(){ var form_data ={ rowid: $('.rowid').val(), qty: $('.qty').val(), ajax: '1', }; alert(form_data); $.ajax({ url:"<?php echo site_url('cart1/update');?>", type:'POST', data: form_data, async: false, success: function(data) { alert(data); } }); });

Member Avatar for Airshow
-2
3K
Member Avatar for acrocephalus

Hello, I am building a web registration form using RSForms for Joomla. I need the form to create a QR code with some of the data provided in the form and store it with the user's data. I know this can be achieved using Javascript, but my knowledge on it …

Member Avatar for piers
0
232
Member Avatar for shashikumar s g

hi all i am trying to allow the user to select the folder to store the downloading file using javascript i didnt found input attribute for download like file i try with downloadify.js but its not work their is another way i can do it

Member Avatar for almostbob
0
187
Member Avatar for OsaMasw

Hey guys. have a nice day.... can anyone tell me how to achieve something like this slider in background ? I used a full screen slider but can't write content in middle of it like this site http://psnprofiles.com/

Member Avatar for OsaMasw
0
181
Member Avatar for nadiam

Hi, guys. Im having this weird thing where the buttons not responding to clicks handled by jquery. i got a page which lists events then when an event names is clicked a table of guest list appears next to it. like this: ![cf2669fd96869baa104ebf595b1f206c](/attachments/large/4/cf2669fd96869baa104ebf595b1f206c.jpg "cf2669fd96869baa104ebf595b1f206c") the page is handled by ajax: …

Member Avatar for nadiam
0
287
Member Avatar for SimonIoa

I HAVE A PROBLEM WITH THIS CODE $('.reply_stdelete').live('click',function() { var ID = $(this).attr("id"); //var X=$(this).attr("my"); var dataString = 'c_id='+ ID ; jConfirm('Sure you want to delete this conversation?', '', function(r) { if(r==true) { $.ajax({ type: "POST", url: "<?php echo $base_url; ?>conversation_delete_ajax.php", data: dataString, cache: false, beforeSend: function() { $("#stbody"+ID).animate( { …

Member Avatar for SimonIoa
0
89
Member Avatar for kazilotus_1

I have a page where I have 100 combo boxes. I made this bookmarklet : javascript:document.getElementById("hioooo").selectedIndex = 38; It works but only for the first combo box, all the rest combobox remains unchanged although they also have the id="hioooo". What should I do to change all the combobox selection to …

Member Avatar for kazilotus_1
0
510
Member Avatar for acrocephalus

Hello, I am trying to build a function that takes the input of the IBAN field (alphanumeric), counts them and compares the to the needed value (24). Then, if don't match it triggers an error message, if they match it does nothing. This is the code: <script type="text/javascript"> function checkIBAN(iban) …

Member Avatar for acrocephalus
0
174
Member Avatar for LaurenE

Hi Guys, I found a tutorial online on how to build an events calendar using PHP and Ajax. I am however a little stuck, I have ran debuggers and have error messages printed throughout the code and whilst the basic calendar functionality works, it does not actually display any events. …

Member Avatar for LaurenE
0
351
Member Avatar for mounika_3

I am using coffee script,when I am trying hit the url..it is not getting redirected to that particualar url and the next steps are getting executed. I am getting this issue only in chrome but it is working fine in firefox previewOpen:-> window.location.href="#/preview" window.setTimeout(@openView(@uuid),500) openView:(uuid) -> $("#design_parts").empty(); console.log("done emptying..."); console.log(uuid) …

0
55

The End.