Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
~7K People Reached
About Me

Enthusiastic J2EE developer and designer

Favorite Tags
Member Avatar for yaragalla_mural

Hi, i am in need of urgent help. I have created a web template using bootstrap. I have created a "collapseble" nav bar and used "parallax, jquery single page nav" to scroll on the same page smoothly.This worked fine. There is no problem in it. After that according to the …

0
169
Member Avatar for yaragalla_mural

Hi i have a table called hospitails. the table structure is as below **Hospitals:-** Hospital_id Bigint name varchar(45) city_id bigint district_id bigint state_id bigint now i need to search hospitals based on name,city_id,district_id,state_id. the query must cntain all the 4 fields. when user does not provide any of the value …

Member Avatar for pclfw
0
148
Member Avatar for yaragalla_mural

Hi friends, I have 20 html pages. For all the pages footer and header is common. I dont want to use div's and paste header and footer in all 20 pages. It is because if there is a change in header i have to change in all 20 pages. I …

Member Avatar for webhawk
0
168
Member Avatar for yaragalla_mural

Hi i have a Div and underneath that there is another div. By default the second div is not visible. Now on mouse over of the first div i am displaying the second div and also on mouse out i am hiding the second div. But the problem is on …

Member Avatar for hericles
0
174
Member Avatar for yaragalla_mural

Hi i have a textarea. Text area is to enter label names. When i enter first letter of the label name the matching labels appear as dropdown so that they can select the label from the drop down instead of typing the whole name. This drop down is a div. …

Member Avatar for yaragalla_mural
0
174
Member Avatar for yaragalla_mural

The following is my html code. This code contains one absolute div. The div with id "mydiv" is an absolute div. Only half of the absolute div is being displayed. I want the div on top of all elements and fully displayed. What could be the problem? Even after specifying …

Member Avatar for JorgeM
0
288
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 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
633
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
134
Member Avatar for yaragalla_mural

Hi i have "font-size" defined in my css. This is working fine with all other browsers but it have a different appearence in IE9. So I want to avoid this style when the browser is IE else it has to work for the rest of the browsers. How to achieve …

Member Avatar for iamthwee
0
857
Member Avatar for yaragalla_mural

Hi before adding `<!DOCTYPE html >` to my html, my javascript code is working fine. But by adding this to my html, the below part of the code is not working div.style.left=x; div.style.top=y; i am not able to set left and top values to an element. What could be the …

Member Avatar for yaragalla_mural
0
113
Member Avatar for yaragalla_mural

By the following code i got image as the responce. if (http.readyState == 4 && http.status == 200) { ver image=http.responseText; } actually when i gave a call to server using ajax the server responded with an image. so now i have stored the image in a variable "image". I …

Member Avatar for yaragalla_mural
0
273
Member Avatar for yaragalla_mural

Hi in my javascript i need to increase an int value by one after every 5 seconds. How to do this? The script should keep increasing until the user moves away from the page.

Member Avatar for yaragalla_mural
0
142
Member Avatar for yaragalla_mural

Hi the problem is defining the font only to the text displayed in the dropdown. In detail when we click on the drop down it shows all the available options. these options should have normal or default font size but when i select an option that gets displayed in the …

Member Avatar for JorgeM
0
304
Member Avatar for yaragalla_mural

Hi I have 5 div tags in my html page and there is a print button. when i click on the print button it has to print only a particular div. for example it has to print the 2nd div which contains some personal information. It should not print the …

Member Avatar for JorgeM
0
414
Member Avatar for yaragalla_mural

Hi the following is my code and i am using crome (browser) <div style="width:700px;height:100px;background-color:silver"> <div id="week" style="margin:20px;border:2px solid red"> <div id="sfsf" style="margin:10px;"> Day Of The Week </div> </div> </div> In the above code the div with id "week" is displaying very strange behavior. For this div i have applied margin …

Member Avatar for BMXDad
0
149
Member Avatar for yaragalla_mural

Hi the following is my code:- <div style="height:50px;background:#F75D59;"> <div style="position:relative;font:bold 20px arial;color:white;float:left;left:50px">GOOGLE </div> <div style="position:relative;float:left;left:200px;"> <input type="text";text size="50px"> <input type="button" title="search"> </div> <div style="position:relative;float:left;left:500px;color:white"> mythili mydhili </div> <div style="position:relative;float:left;left:500px;"> <input type="button" color="#ff0000"value="1"> <input type="button" button size="10px" value="+share"> <img src="a.png"height="20px";width="20px"> </div> </div> The problem with the above code is when the …

Member Avatar for TonyG_cyprus
0
163
Member Avatar for yaragalla_mural

Hi the following is my code:- <div style="height:200px;border: 2px solid red"> This is my book.<br>I am so happy. </div> I have to vertically align the text in center of the div. I will have multiple lines of text. Can anyone help me solve this?

Member Avatar for Troy III
0
359
Member Avatar for yaragalla_mural

Hi with the following code i am able to bring 3 Div's in a single row which are surrounded by a parent DIV. Now the problem is separating each div with a vertical line which makes it look like table cells in a single row. This can be done easily …

Member Avatar for yaragalla_mural
0
163
Member Avatar for yaragalla_mural

Hi I have some problem with body margin and unable to fix it. any help will be appreciated. Thanking you. My code is as follows `<body style="margin-left:60px;width:970px">` with the above code i am able to reduce the body width to 970px but unable to control body right margin. No matter …

Member Avatar for yaragalla_mural
0
243
Member Avatar for yaragalla_mural

hi i am develoing a webapp but in that i need to support vedio calls like google hangout, how to do this?

Member Avatar for yaragalla_mural
-1
80
Member Avatar for yaragalla_mural

Hi The following is my code. In this 2nd and 3rd divs are overlapping. I am not sure why? 3rd div is relative so it has to start relative to second div, that means it has to be after the 2nd div but why they are overlapping? <body style="margin-left:60px"> <form …

Member Avatar for JorgeM
0
125
Member Avatar for yaragalla_mural

I am interested to know how styles work in textarea. when i am posting a question on this site, I type my text in the text area and i am adding styles to it like making selected text bold and also displaying the same on the html page. how does …

Member Avatar for LastMitch
0
113
Member Avatar for yaragalla_mural

Hi i am working with an web application. in my webapp on the browser i am intiating an ajax call to update part of the page. I get the response as html from the server and i will insert the complete response into the div which displays it. I got …

Member Avatar for yaragalla_mural
0
318
Member Avatar for yaragalla_mural

i have to display a combo box with some dynamic values that comes from the database when user checked a checkbox on the currently being viewed html page. I am getting dynamic values from the webserver as json or xml. Now i have take the values from the json or …

Member Avatar for riahc3
0
108
Member Avatar for yaragalla_mural

#header a:hover { color: #fff; } how to understand the above syntax. when will this style apply and to what. in some css selector starts with "." what is the difference between selector starting with period and hash?

Member Avatar for macgurl70
0
107
Member Avatar for yaragalla_mural

Hi in my project i have a html page which imports some js and css files. in my html i have select tag. which is not surrounded aby any "div". but in the runtime when i see in firebug it is surrounded by a "div" which has some styles. comple …

Member Avatar for JRM
0
60
Member Avatar for yaragalla_mural

Hi i am new to ajax and i am little bit confused with the word asynchronous. why is the word asynchronous used for ajax? what is it not in sync with? somebody pls expalin me why the word asynchronous? and how is it justified in ajax? Thanking you in advance.

Member Avatar for yaragalla_mural
0
330
Member Avatar for yaragalla_mural

I am actually new to schema designing. I have read few articles about data modeling and started building schemas for real time data. I have done one. I need guidance in my first steps. Just some one who can have a glance at it and can suggest mistakes that I …

Member Avatar for trudge
0
115