15,688 Topics

Member Avatar for
Member Avatar for pavanik

Write a java script function which will convert an array to a string. Add this function to a HTML page and should be executed in button click event?

Member Avatar for Assembly Guy
-1
131
Member Avatar for brandon66

Hello everyone, im trying to implement select 2 with jquery validation engine pos-absolute but i cant seem to get it right does anyone know how i would get this working correctly? When an option is selected in the select box the validation engine will still say its required. not allowing …

Member Avatar for hag++
0
583
Member Avatar for Kris_2

Hello, I'm relatively new to php and ajax. I'm missing a key concept I think, which is causing my unexpected result. I have a php pure css navbar. User selects menu item, which is a button that launches javascript <script> function loadXMLDoc(yearurl) { var xmlhttp; if (window.XMLHttpRequest) // code for …

Member Avatar for Kris_2
0
372
Member Avatar for erum

hi to all Please let me knwo how to cover these with datatable if data comes from northwind datatable http://support.softwarefx.com/jChartFX/article/2501243#82490a45-4c79-e211-84a5-0019b9e6b500 in above link data is hard coded ..

Member Avatar for erum
0
113
Member Avatar for accra

Am using ajax to populate a drop down list, and it works fine, but i just can't find a way to make choosen.proto to work. It works on other drop-down, but not the one populated with ajax. In short, the form must allow the user to select multiple items Here …

Member Avatar for accra
0
230
Member Avatar for grafic.web

Hi, i applyed an CalendarExtender to my text box, this is the code : <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <asp:CalendarExtender ID="TextBox1_CalendarExtender" runat="server" Enabled="True" TargetControlID="TextBox1"> </asp:CalendarExtender> </div> </form> </body> </html> but when i run it, i get this …

Member Avatar for grafic.web
0
749
Member Avatar for yaragalla_mural

Normally when we use post method with forms, the requests are geting cached. I mean when we use the back button to visit the previous page the request is not being sent to the server to display the previous form. It just loads the form from the cache and loads …

Member Avatar for yaragalla_mural
0
219
Member Avatar for NewHeart42108

I am creating a form which dynamically creates a list of options to purchase. The list is generated from a database. The PHP is <?php for($i = 1; $i <= $opt_count; $i++){ $desc = $options['description'][$i]; $prc = $options['price'][$i]; $type = $options['type'][$i]; $size[$i] = '&nbsp;'; $option_text = <<<TABLE <tr> <td>$desc</td> <td …

Member Avatar for ryantroop
0
256
Member Avatar for yaragalla_mural

Hi we have developed a web app. In the 1st html page based on the user interaction we are inserting some html into the page using javascript. when user moves to the 2nd page everything is fine. Now if user presses the back button then 1st html is displayed without …

Member Avatar for yaragalla_mural
0
646
Member Avatar for hilRunr

My image is embedded in a table cell. I need to know how far it is from edge of window. offsetLeft does not work for this. Neither does style.left.

Member Avatar for hilRunr
0
194
Member Avatar for gahhon

#HTML Markup <table> <tr> <td><asp:Label runat="server" Text="Subject: " /></td> <td><asp:TextBox ID="txtSubject" runat="server" /> <asp:RequiredFieldValidator runat="server" ErrorMessage=" *" ControlToValidate="txtSubject" Font-Size="10pt" ForeColor="Red" /> </td> </tr> <tr></tr><tr></tr><tr></tr> <tr> <td><asp:Label runat="server" Text="Messages: " /></td> <td><asp:TextBox ID="txtMessage" runat="server" TextMode="MultiLine" Height="100px" Width="18em" /> <asp:RequiredFieldValidator runat="server" ErrorMessage=" *" ControlToValidate="txtMessage" Font-Size="10pt" ForeColor="Red" /> </td> </tr> <tr></tr><tr></tr><tr></tr> <tr> <td><asp:Button …

Member Avatar for gahhon
0
300
Member Avatar for YakuzaJevin

i need to improve my skills in java, because i really like software development and web development, but i dont think my skills is in the average level, so if anyone can give me some, advice or maybe some lectures? it would be very helpful THANKS IN ADVANCE :)

Member Avatar for hag++
0
255
Member Avatar for kseguy

I have this small project to mine that I am using to learn web development but I've been stuck at a certain point now with AJAX for 3 days now. I have this ajax code that is supposed to submit to a PHP file. function submitArticle() { xhr = new …

Member Avatar for hag++
0
2K
Member Avatar for laura301019

I have a javascript table that displays contents from an XML file(that stores letter details), I have at each row a view button which I would like the user to be able to click and it will display the letter details for them. Is this possible? The javascript I have …

Member Avatar for GliderPilot
0
259
Member Avatar for Moderns

I have created a slide show to load images, it should start the slide show after loading the images completely in the cache of the browser. The problem, the images are not loaded completely. When the slide show starts, I notice delay in viewing images. I would greatly appreciate your …

Member Avatar for theHop
0
225
Member Avatar for shrikanthnk

Hi , Kindly help me to display tempnum when ahref is clicked. Looks like code marked as Italic requires needs to be updated?? <html> <head> <script type="text/javascript" src="jquery-2.0.3.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".mylinktempnum").click(function(){ *alert($(this).attr('this.tempnum'));* }); }); </script > </head> <body> </body> </html> <?php <a class=\"mylinktempnum\" href=\"home.php?tempnum=$num\"></a> ?>

Member Avatar for shrikanthnk
0
187
Member Avatar for brynFlew

hello, i was wondering if anyone could help me find a way to allow a user to click items in a combo box and have its value populate an input field. Thanks

Member Avatar for Samanalevi
1
368
Member Avatar for Alan_3

I have a requirement to make the height of a sidebar grow relative to the height of the main window. I currently have a sidebar that is sized to its content, but the main window is always much longer. Is it possible to (a) determine the height of the main …

Member Avatar for designershiv
0
4K
Member Avatar for hasan101002
Member Avatar for Waado

Does anyone here know how i could modify this java script code which automatically refresh a page due to the time interval you set. I need assistance on how i can modify this code so it refreshes only once when the page is opened, <script> <!-- /* Auto Refresh Page …

Member Avatar for JorgeM
0
1K
Member Avatar for yaragalla_mural

hi i have small doubt in understanding the difference of the following. the following code did not worked:- window.setTimeout(hello(),3000); function hello(){ alert("ju"); } But the following code worked fine:- window.setTimeout(function(){hello();},3000); function hello(){ alert("ju"); } So what is the difference between the two. In the first code snippet i have called …

Member Avatar for yaragalla_mural
0
135
Member Avatar for jacobi

I am an English teacher wanting to create my own tuition material. I can do this up to a point. I need to make my material dynamic with my users being able to drag and drop in simple games and to answer multi choice questions. More specificly, I need to …

Member Avatar for whiteyoh
0
131
Member Avatar for sarthak25
Member Avatar for kimmi_baby

I have a slideshow I've found online. It's quite a large slideshow and the images take a really long time to load and I've already reduced the file size. I was hoping someone could show me how I preload the images to hopefully make it load quickly. I'm also having …

Member Avatar for designershiv
0
233
Member Avatar for lewashby

In the following code blocks I don't see any affect that my java scipt is having on my form. Any ideas? Thanks. Form: if($row['password'] == $passwd) { echo "<html>"; echo "<body>"; echo "<script src='check.js'></script>"; echo "<form id='form1' action='changepassword.php' method='post'>"; echo "<table>"; echo "<tr><td>"; echo "New Password<center><input type='text' name='newpassword1'></td></tr></center>"; echo "<tr><td>"; …

Member Avatar for lewashby
0
266
Member Avatar for Drugsxxx

down vote favorite I would like to draw Bezier Curves in SVG, and i know that the code looks like: path.setAttributeNS(null, "d", "M5,5 C5,45 45,45 45,5" but what to do if i want to give attributes on page i mean like: circ.setAttributeNS(null, 'cx', x); circ.setAttributeNS(null, 'cy', y); circ.setAttributeNS(null, 'r', bokU); …

Member Avatar for Drugsxxx
0
128
Member Avatar for prnjn

Hi, I dont know javascript and i dont have time to learn it coz i have to submitt the dynamic web project which i am making using jsp,servlet, mysql database. I only need help in this part.Please help. I have a checkbox , i want to use three images in …

Member Avatar for paulkd
0
212
Member Avatar for Annuscha

Hi, I have a textarea counter which has a limit of 160 characters. What I want to do is when the checkbox is ticked the character limit would charge to 140 characters. I have the following code: Html: <input type="checkbox" name="change" value="1" /> <textarea name="sms_text" id="sms_text" rows="8" cols="60" onKeyDown="limitText(this.form.sms_text,this.form.countdown,160);" onKeyUp="limitText(this.form.sms_text,this.form.countdown,160);"></textarea> …

Member Avatar for LastMitch
0
222
Member Avatar for caltech

I have this: http://jsfiddle.net/calyne/DwV4z/3/ I want to make it like this: https://github.com/jakiestfu/Youtube-TV which is great, beautiful, just that it doesn't work for all channels, mysteriously. The one I'm trying to implement it for in particular happens to be among those unfortunate channels. So I've turned to the former script, except …

Member Avatar for LastMitch
0
399
Member Avatar for xmangkan0rx

Good Day! :) I created a chained select using php and jQuery like on this page (http://www.yourinspirationweb.com/en/how-to-create-chained-select-with-php-and-jquery/) and I created a javascript to add and delete select tags I get it somewhere on the internet but what happening is when I choose a category on the first row everything on …

Member Avatar for LastMitch
0
533

The End.