It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In my site there is a text area, where i want to be spell check. But this text area only display wrong word but not appear a popup for right words.
what i can do.
" Actually there is flash work on the site also. and banner to each side of the content, and that text area is in the center.. so why the pop up not displaying..??????
"
Can anyone notice this type of problem, where textarea self spell-checking popup not appear..????
At last i find, the answer why not appear the pop-up on textarea. Because on my site i restrict the user not to copy any content of page.. when i disable that js. then its working..
Now i will find another solution for it but the main problem is solved.!
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can i show an image on whole page when user click a button?
(means i have several controls on page and want to show this image over all of them)
You can write this line in button click event
ClientScript.RegisterClientScriptBlock(GetType(), "key", "javascript: document.body.background = 'Untitled.jpg'; document.body.style.backgroundRepeat = 'no-repeat'; document.body.style.backgroundPosition = '300px 300px'; ", true);
Your looking for a Modal window, there are some great jQuery plugins for that. I really like one called Reveal.
To do it yourself. Set a "position: absolute" and a "z-index" that is higher than your other elements on a div, and trigger it to show/hide with javascript and you should be fine.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Firstly apologies I've re-edited this as the original was so vague.
What I have is a Drupal overlay which only displays a form. The issue is the overlay also displays the page header such as the logo and menu links. I don't want it to display this and was hoping someone could tell me how to prevent this without using CSS to hide the header div within that specific overlay, as although this is a temporary fix, is poor coding.
Thanks,
Rick
You can use drupal_get_form('form_id') to get the complete html of the form in a div and use css/js to get desired result.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have this drop down menu.It stores month, Jan-Dec. User can choose any value of the drop down menu but just one time only. Meaning, lets say previously he choose Jan, the next time if he logged in/ enter new record, he cannot choose Jan anymore or maybe remove the month permanently. Once he select the month, it will be store in session to other page. So, if you guys have any idea,suggestions, or plans, dont hesitate to leave ur answer here. Thank you.
Here are three working examples of what you're looking for:
Using jQuery:
http://jsfiddle.net/wLNZX/
With plain JavaScript:
http://jsfiddle.net/wLNZX/1/
Coded inline with the <select> tag:
http://jsfiddle.net/wLNZX/2/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Looking for an open source mapping tool.
I need to create an interactive map that'd I'd be able to highlight certain highways, buildings, and areas. The map would have to allow visitors to navigate around the area and click any of the highlighted objects for more information to appear.
I'm guessing something like this might be possible with google maps, I just didn't know if there's a better or easier tool I could use.
This seems like it will end up working - http://www.gethifi.com/blog/a-jquery-plugin-for-zoomable-interactive-maps
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
The site in question is www.dudnyk.com.
It appears fine in every browser, even IE9 but just displays as a completely blank page in IE 8 or 7. I've read about issues about tags that aren't closed but I've double checked. Any ideas? I've also tried deactivating all plug-ins and validating the site to W3.
You're using conditional comments to cater the site content to different IE versions. In this case IE < 9 only sees the opening HTML tag and nothing else.
The developer tools were reporting an empty head and body in the DOM, by the way.